-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Link to squint vite build instead of CDN+importmap demo
- Loading branch information
Showing
1 changed file
with
10 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,47 +29,6 @@ jobs: | |
yarn squint compile | ||
node dist/nextjournal/clojure_mode_tests.mjs | ||
squint: | ||
name: Static App / Squint Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: π Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- 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/[email protected] | ||
|
||
- name: π§ Install java | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: '11.0.7' | ||
|
||
- name: π§ Install clojure | ||
uses: DeLaGuardo/setup-clojure@master | ||
with: | ||
bb: 'latest' | ||
|
||
- name: π Build Squint static CDN Demo | ||
run: bb squint:demo:build | ||
|
||
- name: π Copy static build to bucket under SHA | ||
run: gsutil cp -r public gs://nextjournal-snapshots/clojure-mode/squint-build/${{ github.sha }} | ||
|
||
- name: β Add link to Clojure Mode Squint Demo | ||
uses: Sibz/github-status-action@v1 | ||
with: | ||
authToken: ${{secrets.GITHUB_TOKEN}} | ||
context: 'CI / Static App / Squint' | ||
description: 'Ready' | ||
state: 'success' | ||
sha: ${{github.event.pull_request.head.sha || github.sha}} | ||
target_url: https://snapshots.nextjournal.com/clojure-mode/squint-build/${{ github.sha }}/squint-cdn-demo | ||
|
||
snapshot: | ||
name: Static App / Build | ||
runs-on: ubuntu-latest | ||
|
@@ -127,6 +86,16 @@ jobs: | |
sha: ${{github.event.pull_request.head.sha || github.sha}} | ||
target_url: https://snapshots.nextjournal.com/clojure-mode/build/${{ github.sha }} | ||
|
||
- name: β Add link to Clojure Mode Demo | ||
uses: Sibz/github-status-action@v1 | ||
with: | ||
authToken: ${{secrets.GITHUB_TOKEN}} | ||
context: 'CI / Static App / Squint Build' | ||
description: 'Ready' | ||
state: 'success' | ||
sha: ${{github.event.pull_request.head.sha || github.sha}} | ||
target_url: https://snapshots.nextjournal.com/clojure-mode/build/${{ github.sha }}/squint/dist/ | ||
|
||
- name: β Add link to LiveDoc Demo | ||
uses: Sibz/github-status-action@v1 | ||
with: | ||
|