Skip to content

add fm link

add fm link #91

Workflow file for this run

# Sample workflow for building and deploying a Hugo site to GitHub Pages
name: Deploy vss site to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
paths-ignore:
- "README.md"
- "archive/**"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Default to bash
defaults:
run:
shell: bash
jobs:
# Build job
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Pages
id: pages
uses: actions/configure-pages@v1
- name: Install vss cli
run: make setup
- name: Build with vss
run: make build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: dist/
# Deployment job
deploy:
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-24.04
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4