Skip to content

Commit

Permalink
build: 👷 use env var to escape interpolation in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
xaf authored Mar 27, 2024
1 parent 9a68080 commit 3f7c4d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release-next.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ jobs:
env:
GITHUB_EVENT: ${{ toJSON(github.event) }}
GITHUB_TOKEN: ${{ github.token }}
RELEASE_NEXT: ${{ github.event.inputs.version }}
run: |
.github/workflows/scripts/release.py --release-next "${{ github.event.inputs.version }}" | tee -a "$GITHUB_ENV"
.github/workflows/scripts/release.py --release-next "$RELEASE_NEXT" | tee -a "$GITHUB_ENV"
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
Expand Down

0 comments on commit 3f7c4d1

Please sign in to comment.