Skip to content

Add nix introduction post #10

Add nix introduction post

Add nix introduction post #10

Workflow file for this run

name: Deploy
on:
pull_request:
push:
branches:
- master
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install haskell
uses: haskell-actions/[email protected]
with:
ghc-version: 9.6.4
- name: Cache cabal dependencies
uses: actions/cache@v4
with:
path: |
~/.cache/cabal
~/.cabal
key: cabal-deps-${{ hashFiles('cabal.project') }}-${{ hashFiles('blog.cabal') }}
restore-keys: |
cabal-deps-${{ hashFiles('cabal.project') }}
save-always: true
- name: Build blog generator
run: cabal build blog
- name: Build blog
run: cabal run blog
- name: Upload artifact
if: github.ref == 'refs/heads/master'
uses: actions/upload-pages-artifact@v3
with:
path: ./build
deploy:
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy
id: deployment
uses: actions/deploy-pages@v4