diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index bdb080c..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: Publish to Pages -on: - push: - branches: - - public-release -jobs: - static-build: - runs-on: ubuntu-latest - steps: - - name: πŸ›Ž ️Checkout - uses: actions/checkout@v2 - - - 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/"' :git/sha '"${{ github.sha }}"' - - - name: πŸš€ Deploy - uses: JamesIves/github-pages-deploy-action@4.1.6 - with: - branch: gh-pages # The branch the action should deploy to. - folder: public/build # The folder the action should deploy.