DacLinks: diagnose armature scaling, if more than 1% #1047
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# GitHub Actions workflow for commits pushed to the Minie repo - master branch only | |
name: GitHub Pages website | |
on: | |
push: | |
branches: [master] | |
jobs: | |
Website: | |
if: contains(toJson(github.event.commits), '[ci skip] ') == false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.17.1 | |
- run: npm ci | |
# - run: npm audit | |
- run: npx antora src/site/antora/ci-playbook.yml | |
- run: ./gradlew copyJavadocToSite --console=plain --no-daemon --stacktrace | |
- uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build/site |