Skip to content

Merge pull request #3 from webHikari/main #14

Merge pull request #3 from webHikari/main

Merge pull request #3 from webHikari/main #14

Workflow file for this run

name: Pages CI
on:
push:
branches:
- main
pull_request:
branches:
- main
repository_dispatch:
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
name: Build to static HTML
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install, build, and upload your site output
uses: withastro/action@v2
with:
path: .
node-version: 20
package-manager: npm@latest
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4