Skip to content

deploy

deploy #3

Workflow file for this run

name: deploy
on: workflow_dispatch
permissions:
contents: write
pages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v3
- run: |
git config --global user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com"
git config --global user.name "${GITHUB_ACTOR}"
- name: use node.js
uses: actions/setup-node@v3
with:
node-version: "22.x"
cache: "npm"
- run: npm ci
- run: npm run deploy