Skip to content

v1.52.0

v1.52.0 #68

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@8f6863c6c894ba46f9e676ef5cccec4752723c1e" # v1.9.2
with:
upload_url: "${{ github.event.release.upload_url }}"
asset_path: "dist/*"