Skip to content

refactor: demonstrate app.yaml instead of app_config.go #188

refactor: demonstrate app.yaml instead of app_config.go

refactor: demonstrate app.yaml instead of app_config.go #188

Workflow file for this run

name: Build Mini
on: ["push"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [amd64]
targetos: [darwin, linux]
include:
- targetos: darwin
arch: arm64
name: mini ${{ matrix.arch }} for ${{ matrix.targetos }}
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
go-version: "^1.18"
env:
GOOS: ${{ matrix.targetos }}
GOARCH: ${{ matrix.arch }}
- name: Compile mini
run: |
go mod download
cd cmd/minid
go build .
- uses: actions/upload-artifact@v3
with:
name: minid ${{ matrix.targetos }} ${{ matrix.arch }}
path: cmd/minid/minid