Skip to content

v1.53.0

v1.53.0 #69

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
---
name: "Build WASM"
on: # yamllint disable-line rule:truthy
release:
types: ["created"]
permissions:
contents: "read"
jobs:
build:
name: "Build WASM"
runs-on: "depot-ubuntu-24.04-small"
permissions:
contents: "write"
steps:
- uses: "actions/checkout@v6"
with:
ref: "${{ env.GITHUB_SHA }}"
- uses: "authzed/actions/setup-go@main"
- name: "Build WASM"
run: "go run mage.go build:wasm"
- uses: "shogo82148/actions-upload-release-asset@ee2ae851dc5d938b90075b3ef12c540abfd1ee72" # v1.10.1
with:
upload_url: "${{ github.event.release.upload_url }}"
asset_path: "dist/*"