publish-storybook #58
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: publish-storybook | |
on: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.actor == 'semrush-ci-whale' }} | |
cancel-in-progress: true | |
jobs: | |
publish-storybook: | |
runs-on: ubuntu-latest | |
env: | |
GCLOUD_SECRET: ${{ secrets.GCLOUD_SECRET }} | |
steps: | |
- uses: actions/[email protected] | |
with: | |
token: ${{ secrets.BOT_ACCOUNT_GITHUB_TOKEN }} | |
- name: Github GPG Auth | |
uses: crazy-max/[email protected] | |
with: | |
gpg_private_key: ${{ secrets.BOT_ACCOUNT_GPG_PRIVATE_KEY }} | |
git_user_signingkey: true | |
git_commit_gpgsign: true | |
git_committer_name: semrush-ci-whale | |
git_committer_email: [email protected] | |
- name: Update storybook/build-rc branch | |
run: | | |
git checkout -b storybook/build-rc | |
git push --force --set-upstream origin storybook/build-rc | |
git push origin storybook/build-rc --force |