Figuring out how to upload multiple artifacts v5 #6
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 artifacts (no APK signing key for now) | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
# Initially, I wanted to use it to tweak actions/upload-artifact versions from one place | ||
# but I also pulled versions of every action here | ||
env: | ||
Version_Checkout: v4 | ||
Version_Setup_java: v4 | ||
Version_Upload_artifact: v4 | ||
jobs: | ||
build_everything: | ||
name: Build everything | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Do checkout (whatever that means) | ||
uses: actions/checkout@${{ Version_Checkout }} | ||
Check failure on line 26 in .github/workflows/build_artifacts.yml GitHub Actions / Build artifacts (no APK signing key for now)Invalid workflow file
|
||
- name: Setup JDK | ||
uses: actions/setup-java@${{ Version_Setup_java }} | ||
with: | ||
distribution: temurin | ||
java-version: 11 | ||
- name: Set execution permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Build APK (debug), desktop (lwjgl2 and lwjgl3) | ||
run: | | ||
./gradlew android:assembleDebug | ||
./gradlew desktop:dist | ||
./gradlew desktopLwjgl3:dist | ||
- name: Upload debug APK | ||
uses: actions/upload-artifact@${{ Version_Upload_artifact }} | ||
with: | ||
name: app-debug.apk | ||
path: android/build/outputs/apk/debug/android-debug.apk | ||
- name: Upload lwjgl2 dist | ||
uses: actions/upload-artifact@${{ Version_Upload_artifact }} | ||
with: | ||
name: app-desktopLwjgl2.jar | ||
path: desktop/build/libs/desktop-1.0.jar | ||
- name: Upload lwjgl3 dist | ||
uses: actions/upload-artifact@${{ Version_Upload_artifact }} | ||
with: | ||
name: app-desktopLwjgl3.jar | ||
path: desktopLwjgl3/build/libs/desktopLwjgl3-1.0.jar |