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 af93942
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
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]

- name: Cache cabal dependencies
uses: actions/cache@v4
with:
path: ~/.cache/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 af93942

Please sign in to comment.