Skip to content

Commit

Permalink
Add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
itskingori committed Nov 20, 2024
1 parent 4692bcd commit fd16f1b
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
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/[email protected]
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 }}

0 comments on commit fd16f1b

Please sign in to comment.