fix: do not use SNAPSHOT on push tags
Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Successful in 13s
CI Workflow / CI (pull_request) Failing after 30s
Publish / Check GoReleaser config (pull_request) Has been skipped
CI Workflow / Code coverage report (pull_request) Has been skipped
Publish / Publish provider (pull_request) Has been skipped

chore: disable some platforms for now
This commit is contained in:
Marcel S. Henselin 2026-01-29 16:03:58 +01:00
parent 3149537a4a
commit 69a81b78e8
3 changed files with 28 additions and 12 deletions

View file

@ -1,7 +1,12 @@
name: Publish
run-name: Publish by @${{ github.actor }}
on:
pull_request:
branches:
- alpha
- main
workflow_dispatch:
push:
tags:
@ -45,7 +50,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v6
- name: Install Go ${{ env.GO_VERSION }}
- name: 'Install Go ${{ env.GO_VERSION }}'
uses: actions/setup-go@v6
with:
go-version: ${{ env.GO_VERSION }}
@ -81,7 +86,18 @@ jobs:
echo "${{ secrets.PRIVATE_KEY_PEM }}" > private.key.pem
gpg --import private.key.pem
- name: Run GoReleaser with SNAPSHOT
if: github.event_name == 'workflow_dispatch'
id: goreleaser
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GPG_FINGERPRINT: ${{ secrets.GPG_FINGERPRINT }}
uses: goreleaser/goreleaser-action@v6
with:
args: release --skip publish --clean --snapshot
- name: Run GoReleaser
if: github.event_name != 'workflow_dispatch'
id: goreleaser
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}