Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanbruegge committed Mar 22, 2024
1 parent fbb595d commit 7f6018f
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Deploy
on:
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*') }}
save-always: true

- name: Build blog generator
run: cabal build blog

- name: Build blog
run: cabal run blog

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./build

deploy:
needs: build
runs-on: ubuntu-latest

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

0 comments on commit 7f6018f

Please sign in to comment.