diff --git a/.github/workflows/storybook.yml b/.github/workflows/storybook.yml new file mode 100644 index 0000000..3d751c0 --- /dev/null +++ b/.github/workflows/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 master -> 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