Update kobweb to 0.18.0 #71
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
name: Deploy Kobweb site to Pages | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# Allow one concurrent deployment | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
export: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
env: | |
KOBWEB_CLI_VERSION: 0.9.15 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
build-scan-publish: true | |
build-scan-terms-of-use-url: "https://gradle.com/help/legal-terms-of-use" | |
build-scan-terms-of-use-agree: "yes" | |
validate-wrappers: true | |
- name: Query Browser Cache ID | |
id: browser-cache-id | |
run: echo "value=$(./gradlew -q :site:kobwebBrowserCacheId)" >> $GITHUB_OUTPUT | |
- name: Cache Browser Dependencies | |
uses: actions/cache@v4 | |
id: playwright-cache | |
with: | |
path: ~/.cache/ms-playwright | |
key: ${{ runner.os }}-playwright-${{ steps.browser-cache-id.outputs.value }} | |
- name: Fetch kobweb | |
uses: robinraju/release-downloader@v1.10 | |
with: | |
repository: "varabyte/kobweb-cli" | |
tag: "v${{ env.KOBWEB_CLI_VERSION }}" | |
fileName: "kobweb-${{ env.KOBWEB_CLI_VERSION }}.zip" | |
tarBall: false | |
zipBall: false | |
- name: Unzip kobweb | |
run: unzip kobweb-${{ env.KOBWEB_CLI_VERSION }}.zip | |
- name: Run export | |
run: | | |
cd site | |
../kobweb-${{ env.KOBWEB_CLI_VERSION }}/bin/kobweb export --notty --layout static | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./site/.kobweb/site | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: export | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |