Release Wasm #20
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Wasm | |
on: workflow_dispatch | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
filters: | | |
wasm: | |
- 'JS/wasm/**' | |
# start of the build job | |
- name: Build Engine | |
working-directory: . | |
run: | | |
make add all | |
- name: Build CLI | |
working-directory: . | |
run: | | |
make build-arakoo | |
- name: Build Jsonnet | |
working-directory: . | |
run: | | |
make build-jsonnet | |
# start of the release job | |
- name: Create out directory | |
working-directory: . | |
run: | | |
mkdir bin/ | |
- name: Copy arakoo bin | |
working-directory: . | |
run: | | |
cp target/release/arakoo bin/ | |
- name: Zip Jsonnet | |
uses: thedoctor0/[email protected] | |
with: | |
type: 'zip' | |
filename: 'jsonnet.zip' | |
exclusions: '*.git* /*node_modules/* .editorconfig' | |
path: 'JS/jsonnet' | |
- name: Copy Jsonnet | |
working-directory: . | |
run: | | |
cp jsonnet.zip bin/ | |
- name: Copy Javy bin | |
working-directory: . | |
run: | | |
cp target/release/arakoo-compiler bin/ | |
- name: Upload Release Binary | |
uses: actions/upload-artifact@v2 | |
with: | |
name: arakoo-${{ env.RELEASE_TAG }}-x86_64 | |
path: bin | |
release: | |
name: release-wasm | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download artifact | |
uses: actions/download-artifact@v2 | |
with: | |
name: arakoo-${{ env.RELEASE_TAG }}-x86_64 | |
path: Output | |
- name: Display structure of downloaded files | |
run: ls -R | |
- name: Get variables | |
id: vars | |
run: echo "tag_name=${{ env.RELEASE_TAG }}" >> $GITHUB_ENV | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
./Output/* | |
tag_name: ${{ env.RELEASE_TAG }} |