Skip to content

switch to official go (master branch) wasmexport #3

switch to official go (master branch) wasmexport

switch to official go (master branch) wasmexport #3

Workflow file for this run

name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
main:
name: Release process
runs-on: ubuntu-latest
env:
GO_VERSION: 1.22
steps:
# https://github.com/marketplace/actions/checkout
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
# https://github.com/marketplace/actions/setup-go-environment
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Install gotip
run: make gotip
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --clean --timeout=10m
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}