Skip to content

Commit

Permalink
Update to not use working directory in release action
Browse files Browse the repository at this point in the history
  • Loading branch information
streetpea committed Dec 3, 2024
1 parent b34b58e commit d1f7d78
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
ref: ${{ github.ref }}
- name: generate release notes
working-directory: chiaki-ng
working-directory: ${{ github.workspace }}
run: |
echo -e "Linux Flatpak Release on Flathub as io.github.streetpea.Chiaki4deck\n" > release_notes.md
echo -e "Use brew to manage updates for the MacOS release with:\n" >> release_notes.md
Expand All @@ -27,11 +27,10 @@ jobs:
- uses: ncipollo/release-action@v1
id: maker
working-directory: chiaki-ng
with:
prerelease: false
allowUpdates: true
bodyFile: release_notes.md
bodyFile: "${{ github.workspace }}/release_notes.md"
outputs:
upload_url: ${{ steps.maker.outputs.upload_url }}

Expand Down

0 comments on commit d1f7d78

Please sign in to comment.