summaryrefslogtreecommitdiff
path: root/.github/actions
diff options
context:
space:
mode:
authorAnuraag Agrawal <anuraaga@gmail.com>2023-06-12 14:15:54 +0900
committerGitHub <noreply@github.com>2023-06-12 05:15:54 +0000
commite425ccb3095ef3a845b3248b44de1f6b427ddcad (patch)
treef24df4164b482858e44260b05fb00be4e1aa9fd8 /.github/actions
parentbd6ad17fb534c092f896cb01eaf2c43b78fff589 (diff)
downloadwabt-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.yml47
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 }}