feat: add myself to page (#4) #8
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: plait-lab.org CI | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install Dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Upload build | |
uses: actions/upload-artifact@v2 | |
with: | |
name: build | |
path: ./out | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: gh-pages | |
fetch-depth: 0 | |
- name: Download build | |
uses: actions/download-artifact@v2 | |
with: | |
name: build | |
- name: Add .nojekyll | |
run: touch .nojekyll | |
- name: Add CNAME | |
run: echo "plait-lab.org" > CNAME | |
- name: Push to GitHub Pages | |
env: | |
CI_COMMIT_MESSAGE: "plait-lab.org CI Build Artifacts" | |
CI_COMMIT_AUTHOR: "plait-lab.org CI" | |
run: | | |
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}" | |
git config --global user.email "[email protected]" | |
git add . | |
git commit -m "${{ env.CI_COMMIT_MESSAGE }}" | |
git push |