Merge pull request #267 from hrntsm/dependabot/npm_and_yarn/website/f… #98
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: Deploy | |
on: | |
push: | |
branches: [develop] | |
paths: | |
- "website/**" | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: website | |
steps: | |
- uses: actions/checkout@v2 | |
- name: git config | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "hiron" | |
- run: yarn install | |
- run: yarn deploy | |
env: | |
GIT_USER: ${{ github.actor }}:${{ github.token }} |