Skip to content

Publish one heartbeat news item #413

Publish one heartbeat news item

Publish one heartbeat news item #413

Workflow file for this run

name: Deploy Haber to GitHub Pages
on:
push:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install, build, and upload site
uses: withastro/action@v6
env:
PUBLIC_SITE_URL: https://haber.sametbasbug.dev
PUBLIC_NEWS_SITE_URL: https://haber.sametbasbug.dev
PUBLIC_MAIN_SITE_URL: https://sametbasbug.dev
PUBLIC_NEWS_SUBDOMAIN_ENABLED: 'true'
with:
node-version: 24
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@v5