Merge remote-tracking branch 'origin/main' into main

This commit is contained in:
Winni Neessen 2021-03-20 20:02:35 +01:00
commit 808725501d
Signed by: wneessen
GPG key ID: 385AC9889632126E
4 changed files with 81 additions and 2 deletions

25
.github/workflows/release-bsd.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Go
on:
release:
types: [ created ]
jobs:
releases-matrix:
name: Release Go Binary (BSDs)
runs-on: ubuntu-latest
strategy:
matrix:
goos: [freebsd, netbsd, openbsd]
goarch: ["386", amd64, arm, arm64]
steps:
- uses: actions/checkout@v2
- uses: wangyoucao577/go-release-action@v1.15
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
binary_name: "apg"
extra_files: LICENSE README.md
sha256sum: true
md5sum: false

View file

@ -6,11 +6,11 @@ on:
jobs:
releases-matrix:
name: Release Go Binary
name: Release Go Binary (Darwin)
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, windows, darwin, freebsd, openbsd, netbsd]
goos: [darwin]
goarch: ["386", amd64]
steps:
- uses: actions/checkout@v2
@ -19,3 +19,7 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
binary_name: "apg"
extra_files: LICENSE README.md
sha256sum: true
md5sum: false

25
.github/workflows/release-linux.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Go
on:
release:
types: [ created ]
jobs:
releases-matrix:
name: Release Go Binary (Linux)
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux]
goarch: ["386", amd64, arm, arm64, ppc64le, s390x]
steps:
- uses: actions/checkout@v2
- uses: wangyoucao577/go-release-action@v1.15
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
binary_name: "apg"
extra_files: LICENSE README.md
sha256sum: true
md5sum: false

25
.github/workflows/release-windows.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Go
on:
release:
types: [ created ]
jobs:
releases-matrix:
name: Release Go Binary (Windows)
runs-on: ubuntu-latest
strategy:
matrix:
goos: [windows]
goarch: ["386", amd64, arm]
steps:
- uses: actions/checkout@v2
- uses: wangyoucao577/go-release-action@v1.15
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
binary_name: "apg"
extra_files: LICENSE README.md
sha256sum: true
md5sum: false