Skip to content

Commit

Permalink
Fix path for release workflow notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Qonfused committed Feb 25, 2024
1 parent 53dd735 commit 727cae0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/run-builds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ while read -r args; do
echo "$REPLACE" > src/build.yml
# Run build script
TARGET="${args//|/-}"
FLAGS="--skip-serial --${args//|/ --}"
FLAGS="--${args//|/ --}"
echo "Building \"EFI-$TAG-$TARGET-$BUILD.zip\"..."
powershell.exe scripts/build.ps1 "$FLAGS"
# Compress EFI directory
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
shell: sh
run: |
BODY="$(sed -n "/## \[$TAG\]/,/## \[/p" docs/CHANGELOG.md | sed -e '1,2d;$d')"
echo "$BODY" > ${{ github.workspace }}-RELEASE_NOTES.txt
echo "$BODY" > RELEASE_NOTES.txt
env:
TAG: ${{ env.TAG }}
# List all files (for debugging purposes only)
Expand All @@ -51,7 +51,7 @@ jobs:
with:
name: v${{ env.TAG }}
tag_name: ${{ env.TAG }}
body_path: ${{ github.workspace }}-RELEASE_NOTES.txt
body_path: RELEASE_NOTES.txt
prerelease: true
files: |
EFI-${{ env.TAG }}-64-bit-DEBUG.zip
Expand Down

0 comments on commit 727cae0

Please sign in to comment.