mirror of
https://github.com/sberk42/fritzbox_exporter.git
synced 2026-05-21 08:43:37 +00:00
34 lines
838 B
YAML
34 lines
838 B
YAML
name: "build"
|
|
|
|
on:
|
|
# the 1st condition
|
|
workflow_run:
|
|
workflows: ["re-release"]
|
|
branches: [master]
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
build_linux:
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
|
|
name: Build Go Binary
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
# build and publish in parallel: linux/386, linux/amd64, linux/arm64, windows/386, windows/amd64, darwin/amd64, darwin/arm64
|
|
goos: [linux]
|
|
goarch: [amd64, arm, arm64]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: wangyoucao577/go-release-action@v1
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
goos: ${{ matrix.goos }}
|
|
goarch: ${{ matrix.goarch }}
|
|
release_tag: latest
|
|
overwrite: true
|
|
extra_files: LICENSE README.md metrics.json metrics-lua.json
|