Skip to content

Git initial

Git initial #1

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set execute permissions for gradlew
run: chmod +x ./gradlew
- name: Build Kotlin/JS application
run: ./gradlew jsBrowserDistribution
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build/distributions