Skip to content

Merge pull request #13 from Intellection/add_test_and_release_workflows #1

Merge pull request #13 from Intellection/add_test_and_release_workflows

Merge pull request #13 from Intellection/add_test_and_release_workflows #1

Workflow file for this run

name: release
on:
push:
tags:
- "[0-9].[0-9]+.[0-9]+"
jobs:
github-release:
runs-on: ubuntu-latest
steps:
- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref_name }}
release_name: Version ${{ github.ref_name }}
draft: false
prerelease: false
release-binaries:
runs-on: ubuntu-latest
needs: github-release
strategy:
matrix:
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
exclude:
- goarch: arm64
goos: windows
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Publish Go Binaries
uses: wangyoucao577/go-release-action@v1.52
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
ldflags: -X "main.tagVersion=${{ github.ref_name }}"
extra_files: LICENSE README.md
md5sum: true
sha256sum: true
asset_name: resque-exporter-${{ github.ref_name }}-${{ matrix.goos }}-${{ matrix.goarch }}