mirror of
https://github.com/remko/waforth
synced 2024-12-26 09:59:09 +01:00
Change release asset action
This commit is contained in:
parent
1deba1d6bd
commit
9dc7a89dab
1 changed files with 14 additions and 4 deletions
18
.github/workflows/publish-standalone.yml
vendored
18
.github/workflows/publish-standalone.yml
vendored
|
@ -18,7 +18,17 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
- uses: ./.github/actions/setup
|
||||
- run: make -C src/standalone install-deps package
|
||||
- uses: AButler/upload-release-assets@e940f6342206c9655b12a28a79646d3982571ad9
|
||||
with:
|
||||
files: 'src/standalone/waforth-*.tgz'
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
- run: |
|
||||
echo "$EVENT"
|
||||
for f in src/standalone/waforth-*.tgz; do
|
||||
curl \
|
||||
-H "Authorization: token $GITHUB_TOKEN" \
|
||||
-H "Content-Type: $(file -b --mime-type $f)" \
|
||||
--data-binary @$f \
|
||||
"https://uploads.github.com/repos/remko/waforth/releases/$RELEASE_ID/assets?name=$(basename $f)"
|
||||
done
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
RELEASE_ID: ${{ github.event.release.release_id }}
|
||||
EVENT: ${{ toJSON(github.event) }}
|
||||
|
||||
|
|
Loading…
Reference in a new issue