Skip to content

refactor: replace kotlinx-io with okio for file I/O (#123) #85

refactor: replace kotlinx-io with okio for file I/O (#123)

refactor: replace kotlinx-io with okio for file I/O (#123) #85

Workflow file for this run

name: Deploy Web App
on:
push:
branches: [ main ]
workflow_dispatch:
concurrency:
group: pages
cancel-in-progress: false
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
name: Build Web App
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 17
- uses: gradle/actions/setup-gradle@v5
- name: Build WasmJs distribution
run: ./gradlew :app:web:wasmJsBrowserDistribution
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v4
with:
path: app/web/build/dist/wasmJs/productionExecutable
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4