Skip to content

Add Select All Functionality to Labels #42

Add Select All Functionality to Labels

Add Select All Functionality to Labels #42

Workflow file for this run

on: # Workflow to publish site by building project and deploying to GitHub Pages
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
push:
branches: main
permissions: # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
contents: read
pages: write
id-token: write
concurrency:
group: pages # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued
cancel-in-progress: false # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- run: kotlinc *.kt -include-runtime -d .jar -jdk-home $JAVA_HOME_21_X64
- run: $JAVA_HOME_21_X64/bin/java -classpath .jar MainKt > _site/index.html 2> _site/kbdedit.kld
- uses: actions/upload-pages-artifact@main
- uses: actions/deploy-pages@main