Skip to content

Commit

Permalink
chore: create manual-releaser action (#1046)
Browse files Browse the repository at this point in the history
  • Loading branch information
FelisiaM authored and git committed Jul 1, 2024
1 parent 2407785 commit d5bce78
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/manual-releaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: manual-releaser

on:
workflow_dispatch:

jobs:
manual-releaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22.4'
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d5bce78

Please sign in to comment.