Skip to content

Updating the list of libraries #322

Updating the list of libraries

Updating the list of libraries #322

Workflow file for this run

on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4.1.1
with:
submodules: recursive
- uses: actions/configure-pages@v4
- uses: jakejarvis/hugo-build-action@v0.111.3
- uses: actions/upload-pages-artifact@v3
with:
path: public
deploy:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
runs-on: ubuntu-22.04
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4.0.3