Skip to content

fixing color of name #31

fixing color of name

fixing color of name #31

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install
run: npm ci
# User site (its-d.github.io) is served at root; no path prefix
- name: Set deployment URL
run: |
echo "PATH_PREFIX=" >> $GITHUB_ENV
echo "BASE_URL=https://its-d.github.io" >> $GITHUB_ENV
- name: Build
run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: _site
deploy:
environment:
name: github-pages
url: ${{ steps.deploy.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy
id: deploy
uses: actions/deploy-pages@v4