From 1d7fe1f1101b4eedef55cfd9cf7fb418da1c2d9e Mon Sep 17 00:00:00 2001 From: Daniel Czerwonk Date: Fri, 19 Mar 2021 13:41:54 +0100 Subject: [PATCH] add release workflow --- .github/workflows/release.yml | 26 ++++++++++++++++++++++++++ .goreleaser.yml | 17 +++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 .github/workflows/release.yml create mode 100644 .goreleaser.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..491a69c --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,26 @@ +on: + push: + tags: + - '*.*.*' + +name: Release +jobs: + goreleaser: + name: Create Release + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.16 + + - name: Run GoReleaser + uses: goreleaser/goreleaser-action@v2 + with: + args: release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + diff --git a/.goreleaser.yml b/.goreleaser.yml new file mode 100644 index 0000000..5ffc17b --- /dev/null +++ b/.goreleaser.yml @@ -0,0 +1,17 @@ +dist: artifacts +before: + hooks: + - go mod download +builds: + - env: + - CGO_ENABLED=0 + goos: + - linux + - darwin + - freebsd + goarch: + - amd64 + - arm + - arm64 + ldflags: -s -w -X main.version={{.Version}} + binary: bird_exporter