Merge pull request #261 from Syuparn/add-read #2
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: wasi | |
on: | |
push: | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: "1.21" | |
- name: build wasi | |
run: GOOS=wasip1 GOARCH=wasm go build -o pangaea.wasm | |
- name: upload wasi | |
uses: actions/upload-artifact@v3 | |
with: | |
name: wasi | |
path: pangaea.wasm |