Skip to content

Commit

Permalink
ci: update action
Browse files Browse the repository at this point in the history
  • Loading branch information
sereneblue committed Mar 29, 2024
1 parent 6042ac4 commit c1bb5e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:
- name: Generate variables
id: chameleon
run: |
echo "{VERSION}={$(git describe --tags)}" >> $GITHUB_OUTPUT
echo "{FILENAME}={chameleon_$(git describe --tags).signed.xpi}" >> $GITHUB_OUTPUT
echo "VERSION=$(git describe --tags)" >> $GITHUB_OUTPUT
echo "FILENAME=chameleon_$(git describe --tags).signed.xpi" >> $GITHUB_OUTPUT
CHANGELOG=$(python3 ./.github/workflows/dev/chglog.py)
CHANGELOG="${CHANGELOG//$'%'/%25}"
CHANGELOG="${CHANGELOG//$'\n'/%0A}"
CHANGELOG="${CHANGELOG//$'\r'/%0D}"
echo "{CHANGELOG}={$CHANGELOG}" >> $GITHUB_OUTPUT
echo "CHANGELOG=$CHANGELOG" >> $GITHUB_OUTPUT
- name: Create release
id: create_release
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit c1bb5e5

Please sign in to comment.