ADD :: new icon #37
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: Build & Deploy DJ Simblue | |
on: | |
push: | |
branches: [dist] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Github remote | |
run: git remote set-url origin [email protected]:kimhyerin0909/dj-simblue.git | |
# run: git config --global url.https://${{ secrets.GITHUB_TOKEN }}@github.com/.insteadOf https://github.com/ | |
- name: Install and Build 🔧 | |
run: | | |
yarn install | |
yarn deploy-storybook -- --ci | |
env: | |
GITHUB_TOKEN: ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} |