Skip to content

feat: Implement stable path to Python interpreter in direnv #344

feat: Implement stable path to Python interpreter in direnv

feat: Implement stable path to Python interpreter in direnv #344

Workflow file for this run

name: Deploy Jekyll with GitHub Pages dependencies preinstalled
on:
pull_request:
types: [opened, reopened, synchronize]
push:
branches: ["master"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Pages
uses: actions/[email protected]
- uses: cachix/install-nix-action@v23
- uses: cachix/cachix-action@v12
with:
name: linz
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- name: Build with Jekyll
run: nix-shell --pure --run 'github-pages build --verbose'
- name: Upload artifact
uses: actions/[email protected]
deploy:
if:
github.repository == 'linz/emergency-management-tools' && github.ref ==
'refs/heads/master'
concurrency:
group: "pages"
cancel-in-progress: true
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-22.04
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/[email protected]