Skip to content

library: add a lot more content #19

library: add a lot more content

library: add a lot more content #19

Workflow file for this run

name: build and deploy sxlijin.github.io
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
# id-token: write is needed by actions/deploy-pages
permissions:
contents: read
pages: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build the site
run: ./build.sh
- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v2
- name: Deploy GitHub Pages site
uses: actions/deploy-pages@v3