Skip to content

Build and upload

Build and upload #62

Workflow file for this run

name: Build and upload
on: workflow_dispatch
permissions:
contents: write
jobs:
build:
name: ${{ matrix.platform.name }}
strategy:
fail-fast: false
matrix:
platform:
- { name: 'Linux (x64)' ,os: ubuntu-24.04 }
- { name: 'Linux (arm64)' ,os: ubuntu-24.04-arm }
- { name: 'Linux (x64)' ,os: ubuntu-22.04 }
- { name: 'Linux (arm64)' ,os: ubuntu-22.04-arm }
runs-on: ${{ matrix.platform.os }}
steps:
- run: |
curl -fsSL https://go.dev/dl/go1.25.0.linux-amd64.tar.gz > go.tar.gz
rm -rf /usr/local/go && tar -C /usr/local -xzf go.tar.gz
export PATH=/usr/local/go/bin:$PATH
echo $(which go)
go version