Update home.yaml #17
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: "Builds static website & hosts on https://home.qcr.ai" | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "16" | |
check-latest: true | |
- name: Install dependencies | |
run: | | |
npm install | |
npm update qcr-sites-shared | |
- name: Build site | |
run: npm run build | |
- name: Push result to gh_pages branch | |
run: | | |
cp -r out/ ../ | |
git fetch --all | |
git checkout -f gh_pages | |
git reset --hard pages | |
git clean -d -x -f | |
cp -r ../out/* . | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add . | |
git commit -m "Generated from contents of master commit: $(git rev-parse --short "$GITHUB_SHA")" | |
git push -f |