Skip to content

Commit

Permalink
chore: add in terraform publishing secrets (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasRooney authored Apr 12, 2024
1 parent bd37d99 commit d8fc52b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/sdk-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ on:
java_gpg_passphrase:
description: The passphrase for the GPG secret key
required: false
terraform_gpg_secret_key:
description: The GPG secret key to use for signing the Terraform Provider binary
required: false
terraform_gpg_passphrase:
description: The passphrase for the associated terraform provider key
required: false
slack_webhook_url:
description: A Slack webhook URL that pipeline failures will be posted to
required: false
Expand Down Expand Up @@ -298,8 +304,8 @@ jobs:
uses: crazy-max/ghaction-import-gpg@111c56156bcc6918c056dbef52164cfa583dc549 # v5.2.0
id: import_gpg
with:
gpg_private_key: ${{ secrets.TERRAFORM_GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.TERRAFORM_GPG_PASSPHRASE }}
gpg_private_key: ${{ secrets.terraform_gpg_secret_key }}
passphrase: ${{ secrets.terraform_gpg_passphrase }}
- id: release
uses: speakeasy-api/sdk-generation-action@v15
with:
Expand Down

0 comments on commit d8fc52b

Please sign in to comment.