get isActive to sync to client and fix missing overlay resource paths, in 20.1 #325
Workflow file for this run
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 | |
on: | |
pull_request: | |
paths: ['src/**', '**.gradle', 'gradle.properties', 'gradlew**', 'gradle/**'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_ACTION_NUMBER: ${{ vars.GITHUB_RUN_NUMBER }} | |
GITHUB_RUN_NUMBER: ${{ vars.GITHUB_RUN_NUMBER }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build | |
uses: gradle/[email protected] | |
with: | |
arguments: build | |
- name: Upload Artifact | |
uses: actions/[email protected] | |
with: | |
name: build output | |
path: build/libs/* | |
retention-days: 30 |