Skip to content

Commit

Permalink
chore: create manual-releaser action
Browse files Browse the repository at this point in the history
  • Loading branch information
FelisiaM authored Jun 28, 2024
1 parent 17595c0 commit 6885e00
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 6885e00

Please sign in to comment.