From 4e479a365bfba7b46d5d97ac28377588bd4dcb55 Mon Sep 17 00:00:00 2001 From: Marcel_Henselin Date: Fri, 30 Jan 2026 13:33:50 +0000 Subject: [PATCH] fix: fix ci pipeline (#21) ## Description relates to #1234 ## Checklist - [ ] Issue was linked above - [ ] Code format was applied: `make fmt` - [ ] Examples were added / adjusted (see `examples/` directory) - [x] Docs are up-to-date: `make generate-docs` (will be checked by CI) - [ ] Unit tests got implemented or updated - [ ] Acceptance tests got implemented or updated (see e.g. [here](https://github.com/stackitcloud/terraform-provider-stackit/blob/f5f99d170996b208672ae684b6da53420e369563/stackit/internal/services/dns/dns_acc_test.go)) - [x] Unit tests are passing: `make test` (will be checked by CI) - [x] No linter issues: `make lint` (will be checked by CI) Reviewed-on: https://tf-provider.git.onstackit.cloud/stackit-dev-tools/terraform-provider-stackitprivatepreview/pulls/21 --- .github/workflows/ci.yaml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f8ee06b9..fbc3f339 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -74,7 +74,6 @@ jobs: rm ~/private.key.pem - name: Run GoReleaser with SNAPSHOT - if: github.event_name == 'workflow_dispatch' id: goreleaser env: GITHUB_TOKEN: ${{ env.FORGEJO_TOKEN }} @@ -83,16 +82,6 @@ jobs: with: args: release --skip publish --clean --snapshot - - name: Run GoReleaser - if: github.event_name != 'workflow_dispatch' - id: goreleaser - env: - GITHUB_TOKEN: ${{ env.FORGEJO_TOKEN }} - GPG_FINGERPRINT: ${{ secrets.GPG_FINGERPRINT }} - uses: goreleaser/goreleaser-action@v6 - with: - args: release --skip publish --clean - - name: Prepare key file run: | echo "${{ secrets.PUBLIC_KEY_PEM }}" >public_key.pem @@ -106,7 +95,7 @@ jobs: --providerName=stackitprivatepreview \ --repoName=terraform-provider-stackitprivatepreview \ --domain=tfregistry.sysops.stackit.rocks \ - --gpgFingerprint=${{ secrets.GPG_FINGERPRINT }} \ + --gpgFingerprint="${{ secrets.GPG_FINGERPRINT }}" \ --gpgPubKeyFile=public_key.pem \ --version=${VERSION}