Skip to content

Commit

Permalink
ci: update build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramblurr committed May 27, 2024
1 parent 4facdb5 commit 95fd49a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ on:
- main
jobs:
publish:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Cache Maven packages
uses: actions/cache@v4
with:
Expand All @@ -18,7 +20,10 @@ jobs:
key: ${{ runner.os }}-m2-${{ hashFiles('**/deps.edn') }}
restore-keys: ${{ runner.os }}-m2

- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"

- name: Install clojure tools
uses: DeLaGuardo/[email protected]
Expand All @@ -27,6 +32,9 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
bb: latest

- name: Install npm deps
run: npm install

- name: Build static site
run: bb build-static

Expand Down

0 comments on commit 95fd49a

Please sign in to comment.