Skip to content

first cut of the oak leaf explainer. needs more exposition. #255

first cut of the oak leaf explainer. needs more exposition.

first cut of the oak leaf explainer. needs more exposition. #255

Workflow file for this run

name: Continuous Delivery
on: push
jobs:
bucket-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch_depth: 0
- name: πŸ”§ Install java
uses: actions/setup-java@v1
with:
java-version: '11.0.7'
- name: πŸ”§ Install clojure
uses: DeLaGuardo/setup-clojure@master
with:
cli: '1.10.3.943'
- name: πŸ— maven cache
uses: actions/cache@v2
with:
path: |
~/.m2
~/.gitlibs
key: ${{ runner.os }}-maven-${{ github.sha }}
restore-keys: |
${{ runner.os }}-maven-
- name: πŸ— Clerk Cache
uses: actions/cache@v2
with:
path: .cache
key: ${{ runner.os }}-clerk
- name: πŸ— Clerk Build
run: clojure -X:nextjournal/clerk :path-prefix '"clerk-demo/build/${{ github.sha }}/"' :git/sha '"${{ github.sha }}"'
- name: πŸ” Google Auth
uses: google-github-actions/auth@v0
with:
credentials_json: ${{ secrets.GCLOUD_SERVICE_KEY }}
- name: πŸ”§ Setup Google Cloud SDK
uses: google-github-actions/setup-gcloud@v0.3.0
- name: πŸ“  Copy static build to bucket under SHA
run: |
gsutil cp -r public/build gs://nextjournal-snapshots/clerk-demo/build/${{ github.sha }}
- name: βœ… Add success status to the build with a link to the public snapshot URL
uses: Sibz/github-status-action@v1
with:
authToken: ${{secrets.GITHUB_TOKEN}}
context: 'Static App'
description: 'Ready'
state: 'success'
sha: ${{github.event.pull_request.head.sha || github.sha}}
target_url: https://snapshots.nextjournal.com/clerk-demo/build/${{ github.sha }}