Skip to content

[Fedora Notes] Upgrade to Fedora 41 #14

[Fedora Notes] Upgrade to Fedora 41

[Fedora Notes] Upgrade to Fedora 41 #14

Workflow file for this run

name: Publish to GitHub Pages
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v1
- name: Install Emacs
uses: purcell/setup-emacs@master
with:
version: 30.1
- name: Build the site
run: make
- name: Configure GitHub Pages
uses: actions/configure-pages@v5
- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: "public/"
deploy:
if: github.ref == 'refs/heads/master'
permissions:
contents: read
pages: write
id-token: write
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
steps:
- name: Deploy artifact
id: deployment
uses: actions/deploy-pages@v4