Skip to content

Commit

Permalink
revert to dl artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
Manicsteiner committed Jun 12, 2024
1 parent 00fe84d commit 4e856a8
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download from Github
uses: actions/cache@v4
uses: actions/download-artifact@v4
with:
path: assets

- name: Re-zip artifacts
run: |
cd assets
for dir in */ ; do
zip -r "${dir%/}.zip" "$dir"
done
shell: bash

- name: Release to Github
uses: softprops/action-gh-release@v1
with:
files: |
assets/*
assets/*.zip

0 comments on commit 4e856a8

Please sign in to comment.