Skip to content

гипноденсер #11

гипноденсер

гипноденсер #11

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: ./src
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