moved binary build gh actions to one yml
This commit is contained in:
parent
25157bccd7
commit
56c1529fd6
5 changed files with 47 additions and 68 deletions
17
.github/workflows/amd64-release.yml
vendored
17
.github/workflows/amd64-release.yml
vendored
|
@ -1,17 +0,0 @@
|
|||
name: ghcr-push
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
|
||||
jobs:
|
||||
release-linux-amd64:
|
||||
name: release linux/amd64
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: wangyoucao577/go-release-action@v1.34
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
goos: linux
|
||||
goarch: amd64
|
17
.github/workflows/arm-release.yml
vendored
17
.github/workflows/arm-release.yml
vendored
|
@ -1,17 +0,0 @@
|
|||
name: ghcr-push
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
|
||||
jobs:
|
||||
release-linux-arm:
|
||||
name: release linux/arm
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: wangyoucao577/go-release-action@v1.34
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
goos: linux
|
||||
goarch: arm
|
17
.github/workflows/arm64-release.yml
vendored
17
.github/workflows/arm64-release.yml
vendored
|
@ -1,17 +0,0 @@
|
|||
name: ghcr-push
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
|
||||
jobs:
|
||||
release-linux-arm64:
|
||||
name: release linux/arm64
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: wangyoucao577/go-release-action@v1.34
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
goos: linux
|
||||
goarch: arm64
|
47
.github/workflows/build-binaries.yml
vendored
Normal file
47
.github/workflows/build-binaries.yml
vendored
Normal file
|
@ -0,0 +1,47 @@
|
|||
name: build-binaries
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
|
||||
jobs:
|
||||
release-linux-amd64:
|
||||
name: release linux/amd64
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: wangyoucao577/go-release-action@v1.34
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
goos: linux
|
||||
goarch: amd64
|
||||
release-linux-arm:
|
||||
name: release linux/arm
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: wangyoucao577/go-release-action@v1.34
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
goos: linux
|
||||
goarch: arm
|
||||
release-linux-arm64:
|
||||
name: release linux/arm64
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: wangyoucao577/go-release-action@v1.34
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
goos: linux
|
||||
goarch: arm64
|
||||
release-linux-windows:
|
||||
name: release windows
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: wangyoucao577/go-release-action@v1.34
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
goos: windows
|
||||
goarch: amd64
|
17
.github/workflows/windows-release.yml
vendored
17
.github/workflows/windows-release.yml
vendored
|
@ -1,17 +0,0 @@
|
|||
name: ghcr-push
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
|
||||
jobs:
|
||||
release-linux-windows:
|
||||
name: release windows
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: wangyoucao577/go-release-action@v1.34
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
goos: windows
|
||||
goarch: amd64
|
Loading…
Add table
Reference in a new issue