Skip to content

Commit

Permalink
add gha for deploying website
Browse files Browse the repository at this point in the history
  • Loading branch information
garbados committed Nov 15, 2023
1 parent a3b17ca commit 0619ac2
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 7 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Deploy to GitHub Pages

on: [workflow_dispatch]

# on:
# push:
# branches: [main]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

# It is important to install java before installing clojure tools which needs java
# exclusions: babashka, clj-kondo and cljstyle
- name: Prepare java
uses: actions/setup-java@v3
with:
distribution: 'microsoft'
java-version: '17'

- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@12.1
with:
cli: 1.11.1.1347

- name: Install NodeJS
uses: dcodeIO/setup-node-nvm@master
with:
node-version: lts/*

# Optional step:
- name: Cache clojure dependencies
uses: actions/cache@v3
with:
path: |
~/.m2/repository
~/.gitlibs
~/.deps.clj
~/.node_modules
# List all files containing dependencies:
key: cljdeps-${{ hashFiles('package.json') }}-${{ hashFiles('deps.clj') }}
restore-keys: cljdeps-

- run: ./build-web.sh
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .
8 changes: 1 addition & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

# It is important to install java before installing clojure tools which needs java
# exclusions: babashka, clj-kondo and cljstyle
- name: Prepare java
uses: actions/setup-java@v3
with:
Expand All @@ -27,12 +25,8 @@ jobs:
- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@12.1
with:
# Install just one or all simultaneously
# The value must indicate a particular version of the tool, or use 'latest'
# to always provision the latest version
lein: 2.9.1 # Leiningen
lein: 2.9.1

# Optional step:
- name: Cache clojure dependencies
uses: actions/cache@v3
with:
Expand Down
1 change: 1 addition & 0 deletions build-web.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
clj -M -m cljs.main -co build.edn -v -c

0 comments on commit 0619ac2

Please sign in to comment.