Skip to content

Release

Release #18

Workflow file for this run

name: Release
on:
release:
types: [created]
jobs:
release-cli:
name: Release CLI binary
runs-on: ubuntu-latest
strategy:
matrix:
# build and publish in parallel: linux/amd64
goos: [linux, windows, darwin]
goarch: [amd64, arm64]
steps:
- uses: actions/checkout@v4
- name: Run tests
run: go test -v -p=1 -timeout=0 ./...
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
project_path: "./cmd/mendix-cli"
binary_name: "mendix-cli"
ldflags: "-s -w"
compress_assets: OFF