Add nix introduction post #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |