Merge branch 'master' of github.com:varg-dev/treemap-renderer #19
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 Website | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
deploy: | |
name: Deploy website | |
runs-on: ubuntu-latest | |
steps: | |
- name: Initialize Node.js environment | |
uses: actions/setup-node@v2 | |
- name: Check out code | |
uses: actions/checkout@v2 | |
with: | |
ref: master | |
path: src | |
- name: Check out deploy branch | |
uses: actions/checkout@v2 | |
with: | |
ref: deploy | |
path: deploy | |
- name: Clean up output | |
run: git rm -rf * | |
working-directory: deploy | |
- name: Set up dependencies | |
run: npm install | |
working-directory: src | |
- name: Build website | |
run: npm run build:website | |
working-directory: src | |
- name: Copy website | |
run: cp -r src/website/* deploy | |
- name: Commit result | |
run: | | |
git config user.email "${{ github.event.pusher.email }}" | |
git config user.name "${{ github.event.pusher.name }}" | |
git add * | |
git diff-index --quiet HEAD || git commit -m "deploy: ${{ github.event.head_commit.message }}" | |
git push | |
working-directory: deploy |