Skip to content

Deploy

Deploy #120

Workflow file for this run

name: Deploy
on: workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: 2026-svelte
- name: Build page
run: |
npm ci
npm run build
- name: Publish github pages
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/SMMUN0/smmun0.github.io.git
npx gh-pages -d build -u "github-actions-bot <support+actions@github.com>" --nojekyll -b railway
env:
GITHUB_TOKEN: ${{ secrets.ACTIONS_TOKEN }}