mirror of
https://github.com/remko/waforth
synced 2024-12-27 09:59:29 +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: actions/checkout@v2
|
||||||
- uses: ./.github/actions/setup
|
- uses: ./.github/actions/setup
|
||||||
- run: make -C src/standalone install-deps package
|
- run: make -C src/standalone install-deps package
|
||||||
- uses: AButler/upload-release-assets@e940f6342206c9655b12a28a79646d3982571ad9
|
- run: |
|
||||||
with:
|
echo "$EVENT"
|
||||||
files: 'src/standalone/waforth-*.tgz'
|
for f in src/standalone/waforth-*.tgz; do
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
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