Skip to content

Merge branch 'main' of https://github.com/mitchross/talos-argocd-proxmox #128

Merge branch 'main' of https://github.com/mitchross/talos-argocd-proxmox

Merge branch 'main' of https://github.com/mitchross/talos-argocd-proxmox #128

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main
paths:
- 'src/**'
- 'docs/**'
- 'astro.config.mjs'
- 'package.json'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Build site
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: dist
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4