Skip to content

Commit

Permalink
Get rid of date append from release name
Browse files Browse the repository at this point in the history
To have a static URL for producers to download from.
  • Loading branch information
agrastiOs committed Feb 29, 2024
1 parent 08a1952 commit 726775f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ jobs:

- name: Zip output
run: |
zip -qq -y -r "${{ github.event.repository.name }}-${{ env.NOW }}.zip" custom cfg README.md
zip -qq -y -r "${{ github.event.repository.name }}.zip" custom cfg README.md
working-directory: ${{ env.SCRIPTS_PATH }}

- name: List files in the directory
run: ls -R
working-directory: ${{ env.SCRIPTS_PATH }}

- name: List files in the zip
run: unzip -l ${{ github.event.repository.name }}-${{ env.NOW }}.zip
run: unzip -l ${{ github.event.repository.name }}.zip
working-directory: ${{ env.SCRIPTS_PATH }}

- name: Create Release
Expand All @@ -49,7 +49,7 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ env.NOW }}
artifacts: "${{ github.event.repository.name }}-${{ env.NOW }}.zip"
artifacts: "${{ github.event.repository.name }}.zip"
draft: false
allowUpdates: true
prerelease: false
Expand Down

0 comments on commit 726775f

Please sign in to comment.