Branch3 #1
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 to GithubPages | |
# on: | |
# push: | |
# branches: | |
# - master | |
on: pull_request | |
permissions: | |
contents: write | |
jobs: | |
deploy-to-gh-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
# - name: Install Packages | |
# run: | | |
# npm install | |
# - name: Build | |
# run: | | |
# npm run build | |
- name: Build | |
run: | | |
mkdir dist | |
cp index.html dist/ | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: dist # The folder the action should deploy. |