Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
simonsmh authored Dec 25, 2024
1 parent 19b3c6c commit 5e32d81
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ jobs:
poetry run python -m chws_subset
- name: Make release zip
run: |
zip -9 -x "*.git*" -x "chws_subset*" -x "extra*" -x "poetry.lock" -x "pyproject.toml" -r ../notocjk.zip ./
sha256sum ../notocjk.zip > ../notocjk.zip.sha256sum
zip -9 -x "*.git*" -x "chws_subset*" -x "extra*" -x "poetry.lock" -x "pyproject.toml" -r notocjk.zip ./
sha256sum notocjk.zip > notocjk.zip.sha256sum
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
../notocjk.zip
../notocjk.zip.sha256sum
notocjk.zip
notocjk.zip.sha256sum
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v4
with:
name: notocjk
path: ../notocjk.zip
path: notocjk.zip

0 comments on commit 5e32d81

Please sign in to comment.