-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update workflows to use newer Node version * Update workflows to use newer Node version * Update workflows to use newer Node version
- Loading branch information
Showing
3 changed files
with
27 additions
and
26 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,14 +21,14 @@ jobs: | |
- uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
cache: gradle | ||
|
||
- name: Validate Gradle wrapper | ||
uses: gradle/wrapper-validation[email protected] | ||
uses: gradle/actions/wrapper-validation@v3 | ||
|
||
- name: Build debug APK | ||
run: ./gradlew assembleDebug | ||
|
@@ -38,17 +38,17 @@ jobs: | |
environment: Development | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
cache: gradle | ||
|
||
- name: Validate Gradle wrapper | ||
uses: gradle/wrapper-validation[email protected] | ||
uses: gradle/actions/wrapper-validation@v3 | ||
|
||
- name: Decrypt the keystore for signing | ||
run: | | ||
|
@@ -59,19 +59,19 @@ jobs: | |
run: ./gradlew assembleRelease | ||
|
||
- name: Upload release arm64-v8a APK | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ark-navigator-arm64-v8a-apk | ||
path: ./app/build/outputs/apk/release/ark-navigator-arm64-v8a-release.apk | ||
|
||
- name: Upload release armeabi-v7a APK | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ark-navigator-armeabi-v7a-apk | ||
path: ./app/build/outputs/apk/release/ark-navigator-armeabi-v7a-release.apk | ||
|
||
- name: Upload release universal APK | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ark-navigator-universal-apk | ||
path: ./app/build/outputs/apk/release/ark-navigator-universal-release.apk | ||
|
@@ -80,19 +80,19 @@ jobs: | |
run: ./gradlew assembleDebug | ||
|
||
- name: Upload debug arm64-v8a APK | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ark-navigator-arm64-v8a-debug-apk | ||
path: ./app/build/outputs/apk/debug/ark-navigator-arm64-v8a-debug.apk | ||
|
||
- name: Upload debug armeabi-v7a APK | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ark-navigator-armeabi-v7a-debug-apk | ||
path: ./app/build/outputs/apk/debug/ark-navigator-armeabi-v7a-debug.apk | ||
|
||
- name: Upload debug universal APK | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ark-navigator-universal-debug-apk | ||
path: ./app/build/outputs/apk/debug/ark-navigator-universal-debug.apk | ||
|
@@ -102,10 +102,10 @@ jobs: | |
environment: Development | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
|
@@ -117,18 +117,18 @@ jobs: | |
environment: Development | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
|
||
- name: Run linter | ||
run: ./gradlew lint | ||
|
||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: lint-results | ||
path: ./app/build/reports/lint-results-debug.html | ||
|
@@ -137,10 +137,10 @@ jobs: | |
environment: Development | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,16 +15,16 @@ jobs: | |
ACRA_URI: ${{ secrets.ACRARIUM_URI }} | ||
BRANCH_NAME: ${{ github.ref_name }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
|
||
- name: Validate Gradle wrapper | ||
uses: gradle/wrapper-validation[email protected] | ||
uses: gradle/actions/wrapper-validation@v3 | ||
|
||
- name: Build Release APK | ||
run: ./gradlew assembleRelease | ||
|
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