Skip to content

add report image

add report image #10

name: Deploy Compose Web App (JS)
on:
push:
branches: [NK/03-migrate-kmp]
permissions:
contents: write
jobs:
test-and-build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/buildSrc/**/*.kt') }}
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Build
run: |
./gradlew jsBrowserDistribution --no-configuration-cache
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: modules/instances/web/build/dist/js/productionExecutable