mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-16 20:59:27 +00:00
19 lines
452 B
YAML
19 lines
452 B
YAML
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 }} |