Skip to content

Commit

Permalink
ci: fix changelog output
Browse files Browse the repository at this point in the history
  • Loading branch information
sereneblue committed Jun 24, 2024
1 parent 8261734 commit 4d25b6e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ jobs:
echo "VERSION=$(git describe --tags)" >> $GITHUB_OUTPUT
echo "FILENAME=chameleon_$(git describe --tags).signed.xpi" >> $GITHUB_OUTPUT
CHANGELOG=$(python3 ./.github/workflows/dev/chglog.py)
echo "CHANGELOG=$CHANGELOG" >> $GITHUB_OUTPUT
echo 'CHANGELOG<<EOF' >> $GITHUB_OUTPUT
echo "$CHANGELOG" >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- name: Create release
id: create_release
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit 4d25b6e

Please sign in to comment.