Skip to content

feat: add Google site verification HTML file #6

feat: add Google site verification HTML file

feat: add Google site verification HTML file #6

Workflow file for this run

name: Deploy Github Pages
on:
push:
branches: ["master"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Build
run: |
npm ci
npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "./out"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4