Skip to content

favicon (#16)

favicon (#16) #7

name: Deploy Website to GitHub Pages
on:
# Trigger the workflow every time you push to the `main` branch
# Using a different branch name? Replace `main` with your branch’s name
push:
branches: [ master ]
paths:
- 'website/**'
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:
# Allow this job to clone the repo and create a page deployment
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Print commit id, message and tag
run: |
git show -s --format='%h %s'
echo "github.ref -> {{ github.ref }}"
- name: Set up Node.js and Yarn
uses: actions/setup-node@v3
with:
node-version: '20.10.0'
registry-url: 'https://registry.yarnpkg.com'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build:website
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./website/dist
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1