Skip to content

Reword the skill file rather than change Tailwind's config #238

Reword the skill file rather than change Tailwind's config

Reword the skill file rather than change Tailwind's config #238

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
# Let the workflow publish to Pages via OIDC.
permissions:
contents: read
pages: write
id-token: write
# One deploy at a time; don't cancel an in-progress publish.
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version-file: .nvmrc
cache: npm
- uses: actions/configure-pages@v6
- name: Install dependencies
run: npm ci
- name: Build static site
run: npm run build
- name: Disable Jekyll (serve _next assets)
run: touch out/.nojekyll
- uses: actions/upload-pages-artifact@v5
with:
path: out
# .nojekyll above is a dotfile, and this action excludes dotfiles by
# default from v4 onward. Without this it would be dropped silently.
include-hidden-files: true
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v5