Result of tsccr-helper -log-level=info gha update -latest .github/ #346
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: Build | |
on: | |
push: | |
paths: | |
- '**' | |
- '!**.md' | |
- '!dev/**' | |
- '!verify/**' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- { runner: ubuntu, os: linux, arch: amd64 } | |
- { runner: ubuntu, os: linux, arch: arm64 } | |
- { runner: ubuntu, os: windows, arch: amd64 } | |
- { runner: ubuntu, os: windows, arch: arm64 } | |
- { runner: macos, os: darwin, arch: amd64 } | |
- { runner: macos, os: darwin, arch: arm64 } | |
runs-on: ${{ matrix.runner }}-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
# Dogfood this Action to build its own CLI. | |
- uses: ./ | |
with: | |
# We override the default product name so that this test build | |
# of the CLI doesn't take the place of the cli built by the action. | |
product_name: actions-go-build-test-build | |
go_version: '1.20' | |
os: ${{ matrix.os }} | |
arch: ${{ matrix.arch }} | |
instructions: go build -o $BIN_PATH -trimpath -buildvcs=false |