diff options
author | Anuraag Agrawal <anuraaga@gmail.com> | 2023-06-12 14:15:54 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-12 05:15:54 +0000 |
commit | e425ccb3095ef3a845b3248b44de1f6b427ddcad (patch) | |
tree | f24df4164b482858e44260b05fb00be4e1aa9fd8 /.github/actions | |
parent | bd6ad17fb534c092f896cb01eaf2c43b78fff589 (diff) | |
download | wabt-e425ccb3095ef3a845b3248b44de1f6b427ddcad.tar.gz wabt-e425ccb3095ef3a845b3248b44de1f6b427ddcad.tar.bz2 wabt-e425ccb3095ef3a845b3248b44de1f6b427ddcad.zip |
Add build and publishing of wabt tools with wasi (#2254)
Diffstat (limited to '.github/actions')
-rw-r--r-- | .github/actions/release-archive/action.yml | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/.github/actions/release-archive/action.yml b/.github/actions/release-archive/action.yml new file mode 100644 index 00000000..a81cf918 --- /dev/null +++ b/.github/actions/release-archive/action.yml @@ -0,0 +1,47 @@ +name: Upload release archive +description: Bundles an archive of artifacts and uploads to a GitHub release. The artifacts must already have been built into the folder "install". +inputs: + os: + description: The OS runner name being built, used in the archive name + required: true + upload_to_release: + description: Whether to upload the archives to the release +runs: + using: composite + steps: + - name: archive + id: archive + shell: bash + run: | + OSNAME=$(echo ${{ inputs.os }} | sed 's/-latest//') + VERSION=${{ github.ref_name }} + PKGNAME="wabt-$VERSION-$OSNAME" + TARBALL=$PKGNAME.tar.gz + SHASUM=$PKGNAME.tar.gz.sha256 + mv install wabt-$VERSION + tar -czf $TARBALL wabt-$VERSION + scripts/sha256sum.py $TARBALL > $SHASUM + echo "::set-output name=tarball::$TARBALL" + echo "::set-output name=shasum::$SHASUM" + + - name: upload tarball to CI + uses: actions/upload-artifact@v3 + with: + name: ${{ steps.archive.outputs.tarball }} + path: ./${{ steps.archive.outputs.tarball }} + + - name: upload tarball to release + uses: svenstaro/upload-release-action@v2 + if: ${{ inputs.upload_to_release }} + with: + file: ./${{ steps.archive.outputs.tarball }} + asset_name: ${{ steps.archive.outputs.tarball }} + tag: ${{ github.ref }} + + - name: upload shasum + uses: svenstaro/upload-release-action@v2 + if: ${{ inputs.upload_to_release }} + with: + file: ./${{ steps.archive.outputs.shasum }} + asset_name: ${{ steps.archive.outputs.shasum }} + tag: ${{ github.ref }} |