diff --git a/.github/workflows/release-beta.yml b/.github/workflows/release-beta.yml index 8221dae9..819e1312 100644 --- a/.github/workflows/release-beta.yml +++ b/.github/workflows/release-beta.yml @@ -22,6 +22,7 @@ jobs: run: | echo "It is not possible to release a provider with the name 'spacelift' to the Spacelift registry using manual workflow." exit 1 + - name: Checkout uses: actions/checkout@v4 with: @@ -30,6 +31,10 @@ jobs: - name: Unshallow run: git fetch --prune --unshallow + - name: Update goreleaser project name + run: | + echo -e "project_name: terraform-provider-${{ inputs.providerType }}\n$(cat .goreleaser.yml)" > .goreleaser.yml + - name: Set up Go uses: actions/setup-go@v4 with: { go-version: 1.21 }