From be43c5ed9552c55e2eff927f2fc3420cf329cf28 Mon Sep 17 00:00:00 2001 From: Joey Parrish Date: Fri, 11 Oct 2024 09:46:45 -0700 Subject: [PATCH] ci: Correct versions file path in release workflow (#47) This was mistaken ever since we moved the file, but we haven't made any releases since then. The effect of this bug would be to have the "versions" section of the release notes be empty. --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5e3804f..d769383 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -95,7 +95,7 @@ jobs: echo "" >> body.txt echo "Software versions:" >> body.txt - cat repo-src/.github/workflows/versions.txt | \ + cat repo-src/versions.txt | \ sed -e 's/^/ - /' >> body.txt echo "" >> body.txt