feat(resize): correctly sync with framebuffers #65
This file contains hidden or 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: [pull_request, push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| environment: staging | |
| steps: | |
| - name: Extract current branch name | |
| shell: bash | |
| # bash pattern expansion to grab branch name without slashes | |
| run: ref="${GITHUB_REF#refs/heads/}" && echo "branch=${ref////-}" >> $GITHUB_OUTPUT | |
| id: ref | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| - name: Setup Java 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v5 | |
| with: | |
| cache-read-only: false | |
| - name: Execute Gradle build | |
| run: ./gradlew build | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: TGB-artifacts-${{ steps.ref.outputs.branch }} | |
| path: build/libs/*.jar |