-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update release workflow to support the build of a dev
chart
#115
Conversation
@@ -2,17 +2,22 @@ | |||
name: Release Prefect Operator Helm Chart | |||
|
|||
"on": | |||
workflow_dispatch: {} | |||
workflow_call: {} | |||
workflow_call: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need for workflow_dispatch anymore -- since we will be building dev charts on every merge to main
echo "SIGN_PASSPHRASE_FILE=$passphrase_file" >> $GITHUB_ENV | ||
echo "SIGN_KEYRING=$keyring" >> $GITHUB_ENV | ||
env: | ||
GPG_KEYRING_BASE64: "${{ secrets.GPG_KEYRING_BASE64 }}" | ||
GPG_PASSPHRASE: "${{ secrets.GPG_PASSPHRASE }}" | ||
GPG_KEYRING_BASE64: ${{ secrets.GPG_KEYRING_BASE64 }} | ||
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removing quotes, should be a no-op
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice!
Relates to PLA-344
Relates to https://github.com/PrefectHQ/cloud2-cluster-deployment/pull/1306