Skip to content

Commit

Permalink
ci: uses artifacts for release files
Browse files Browse the repository at this point in the history
  • Loading branch information
truenicoco committed Jan 8, 2025
1 parent 2648761 commit 8ee9f4e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ jobs:


# github release
- name: Zip for github release
if: startsWith(github.ref, 'refs/tags/v')
run: zip -qq -r hh-creator-${{ github.ref_name }}-windows.zip pyinstaller/dist/windows
- uses: actions/download-artifact@v4
- name: Check what artifacts have been downloaded
run: |
ls -la
ls -la $ARTIFACT_PREFIX*
- name: Github release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v2
with:
files: |
hh-creator-${{ github.ref_name }}-windows.zip
dist/*
files: $ARTIFACT_PREFIX*

0 comments on commit 8ee9f4e

Please sign in to comment.