diff --git a/.github/workflows/manual-releaser.yml b/.github/workflows/manual-releaser.yml new file mode 100644 index 000000000..c8511cb49 --- /dev/null +++ b/.github/workflows/manual-releaser.yml @@ -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 }}