Skip to content

More Scala 3 fixes

More Scala 3 fixes #19

name: Deploy to GH Pages
on:
push:
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
- name: Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --add github.actor OndrejSpanel
git config --add github.token ${{ secrets.GITHUB_TOKEN }}
sbt projsJS/fullOptJS
mkdir public
cp js/target/scala-3.5.0/formulafx-opt.js public/.
cp js/target/scala-3.5.0/index.html public/.
- name: Deploy
if: success()
uses: crazy-max/ghaction-github-pages@v1
with:
target_branch: gh-pages
build_dir: public
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}