Update deploy.yml #3
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-crypto-box | |
on: | |
push: | |
branches: | |
- develop | |
# List of all jobs | |
jobs: | |
# Job name Build | |
build: | |
# run on ubuntu machine machine | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
- uses: actions/checkout@v2 | |
- name: Install Dependencies | |
- run: npm run install | |
- name: Run Build | |
- run: npm run build | |
- name: deploy to github pages | |
- uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: dist |