Skip to content

0.0.3

0.0.3 #3

Workflow file for this run

# https://github.com/marketplace/actions/go-release-binaries
name: Release
on:
release:
types: [created]
jobs:
release-linux-amd64:
name: release linux/amd64
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux,windows,darwin]
goarch: [amd64, arm64]
exclude:
- goarch: arm64
goos: windows
steps:
- uses: actions/checkout@v4
- uses: wangyoucao577/go-release-action@v1.48
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
binary_name: vcluster-backup
retry: 10
sha256sum: true
overwrite: true
pre_command: go mod tidy