bugfix: dumi broken pack (#62) #105
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: fury site deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v1 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18.x | |
# build | |
- name: Build Project | |
run: | | |
npm install | |
npm run build | |
# save to deploy branch | |
- name: Deploy to Github | |
uses: JamesIves/[email protected] | |
with: | |
branch: deploy | |
folder: dist |