diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index e4016defff..a0ef158c28 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -26,3 +26,5 @@ jobs: goreleaser: uses: ./.github/workflows/goreleaser.yml + secrets: + GORELEASER_ACCESS_TOKEN: ${{ secrets.GORELEASER_ACCESS_TOKEN }} diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml index f4fcc8f6bc..4c72e9ecd1 100644 --- a/.github/workflows/goreleaser.yml +++ b/.github/workflows/goreleaser.yml @@ -1,6 +1,9 @@ name: goreleaser on: workflow_call: + secrets: + GORELEASER_ACCESS_TOKEN: + required: true env: GO_VERSION: '1.21.1'