Skip to content

new article: vdirsyncer beta release #23

new article: vdirsyncer beta release

new article: vdirsyncer beta release #23

Workflow file for this run

name: Deploy site with GitHub Pages
on:
push:
branches: ["main"]
pull_request:
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
# Build job
build:
# Hint: 'latest' == 22.04. Somebody forgot to update the alias.
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
with:
python-version: '3.10'
- run: sudo apt install hugo
- run: hugo
- uses: actions/configure-pages@v1
- uses: actions/upload-pages-artifact@v1
with:
path: public/
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1