Skip to content

Commit

Permalink
Create release-binary.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
h0tak88r authored Feb 14, 2024
1 parent d11663c commit 4fa9ad6
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release-binary.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: 🎉 Release Binary

on:
push:
tags:
- v*
workflow_dispatch:

jobs:
release:
runs-on: ubuntu-latest-16-cores
steps:
- name: "Check out code"
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: "Set up Go"
uses: actions/setup-go@v4
with:
go-version: 1.21.x

- name: "Create release on GitHub"
uses: goreleaser/goreleaser-action@v4
with:
args: "release --clean"
version: latest
workdir: .

0 comments on commit 4fa9ad6

Please sign in to comment.