Skip to content

Commit

Permalink
ci: Fix output file name assignment.
Browse files Browse the repository at this point in the history
For security reasons, environement variables can't be based on other env variables without going to some trouble. Not worth it now.
  • Loading branch information
elondaits committed Apr 8, 2024
1 parent 2434381 commit c8398a5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ jobs:
contents: write
pull-requests: read
env:
RELEASE_BASENAME: ${{ github.event.repository.name }}-${{ github.ref_name }}
RELEASE_ZIP_FILENAME: ${{ RELEASE_BASENAME }}.zip
RELEASE_TAR_GZ_FILENAME: ${{ RELEASE_BASENAME }}.tar.gz
RELEASE_ZIP_FILENAME: ${{ github.event.repository.name }}-${{ github.ref_name }}.zip
RELEASE_TAR_GZ_FILENAME: ${{ github.event.repository.name }}-${{ github.ref_name }}.tar.gz
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
Expand Down

0 comments on commit c8398a5

Please sign in to comment.