Skip to content

v1.1.2

v1.1.2 #6

Workflow file for this run

---
name: publish release
on:
release:
types: [created]
permissions:
contents: write
packages: write
jobs:
release-linux-amd64:
name: create and publish vault-raft-backup release
runs-on: ubuntu-latest
strategy:
matrix:
goos:
- linux
- windows
- darwin
goarch:
- '386'
- amd64
- arm64
exclude:
- goos: darwin
goarch: '386'
- goos: linux
goarch: '386'
- goos: windows
goarch: arm64
steps:
- name: checkout
uses: actions/checkout@v4
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: go.mod
ldflags: '-s -w'
overwrite: true