Add IS_OCULUS to Standard Macros (#806)
#173
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 mod | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - name: Initialize caches | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ~/.gradle/caches | |
| ~/.gradle/loom-cache | |
| ~/.gradle/wrapper | |
| key: ${{ runner.os }}-build-snapshot-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }} | |
| restore-keys: | | |
| ${{ runner.os }}-build-snapshot- | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build the mod | |
| run: ./gradlew --no-daemon build | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: Oculus-Artifacts | |
| path: build/libs |