From d3640e4cccca1c049fbb8af50d525d1cc426af38 Mon Sep 17 00:00:00 2001 From: Igor Shargin Date: Sun, 5 May 2024 15:07:24 +0500 Subject: [PATCH] feat: add yml file for auto deploy storybook --- .github/workflows/deploy-storybook.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/deploy-storybook.yml diff --git a/.github/workflows/deploy-storybook.yml b/.github/workflows/deploy-storybook.yml new file mode 100644 index 0000000..0f25789 --- /dev/null +++ b/.github/workflows/deploy-storybook.yml @@ -0,0 +1,19 @@ +name: Build and Deploy Storybook +on: + push: + branches: + - 'master' +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v2.3.1 + + - name: Merge dev -> storybook-deploy 🚀 + uses: devmasx/merge-branch@1.4.0 + with: + type: now + from_branch: master + target_branch: storybook-deploy + github_token: ${{ github.token }} \ No newline at end of file