mirror of
https://github.com/Chipazawra/v8-1c-cluster-pde.git
synced 2025-01-14 04:35:54 +02:00
32 lines
715 B
YAML
32 lines
715 B
YAML
# .github/workflows/release.yaml
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- created
|
|
|
|
jobs:
|
|
release-linux-amd64:
|
|
name: release linux/amd64
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: wangyoucao577/go-release-action@v1.22
|
|
with:
|
|
github_token: ${{ secrets.RELEASE_TOKEN }}
|
|
goos: linux
|
|
goarch: amd64
|
|
project_path: ./cmd/app/
|
|
|
|
release-windows-amd64:
|
|
name: release windows/amd64
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: wangyoucao577/go-release-action@v1.22
|
|
with:
|
|
github_token: ${{ secrets.RELEASE_TOKEN }}
|
|
goos: windows
|
|
goarch: amd64
|
|
project_path: ./cmd/app/
|