Bump packages, add description to website #94
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
name: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Clone repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: 📥 Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
- name: 📥 Setup node.js | |
run: npm ci | |
- name: ⚒️ Build | |
run: ./gradlew assemble | |
- name: 💡 Lint | |
run: npm run --silent lint | |
- name: 📤 Upload site | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: build/webMin | |
retention-days: 1 | |
deploy: | |
name: Publish | |
needs: build | |
if: ${{ github.ref_name == 'master' }} | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🚀 Deploy | |
id: deployment | |
uses: actions/deploy-pages@v4 |