forked from github/wulkanowy-mirror
Compare commits
2 Commits
9f6ae0e6b5
...
f2857bdece
Author | SHA1 | Date | |
---|---|---|---|
f2857bdece | |||
3c1497394c |
@ -33,6 +33,14 @@ jobs:
|
|||||||
java-version: '17'
|
java-version: '17'
|
||||||
cache: 'gradle'
|
cache: 'gradle'
|
||||||
|
|
||||||
|
- name: Cache Gradle
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.gradle/caches
|
||||||
|
~/.gradle/wrapper
|
||||||
|
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}
|
||||||
|
|
||||||
- name: Get app version
|
- name: Get app version
|
||||||
id: get_version
|
id: get_version
|
||||||
run: echo "VERSION_NAME=$(grep -m1 "versionName" app/build.gradle | awk '{print $2}' | tr -d \''"\')" >> $GITHUB_ENV
|
run: echo "VERSION_NAME=$(grep -m1 "versionName" app/build.gradle | awk '{print $2}' | tr -d \''"\')" >> $GITHUB_ENV
|
||||||
@ -47,9 +55,9 @@ jobs:
|
|||||||
run: ./gradlew assembleRelease
|
run: ./gradlew assembleRelease
|
||||||
|
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
uses: christopherhx/gitea-upload-artifact@v4
|
uses: actions/upload-artifact@v3 # not v4 because of GHES
|
||||||
with:
|
with:
|
||||||
name: apks
|
name: wulkanowy_mod_release.apk
|
||||||
path: |
|
path: |
|
||||||
app/build/outputs/**/*-release-unsigned.apk
|
app/build/outputs/**/*-release-unsigned.apk
|
||||||
|
|
||||||
|
@ -33,6 +33,14 @@ jobs:
|
|||||||
java-version: '17'
|
java-version: '17'
|
||||||
cache: 'gradle'
|
cache: 'gradle'
|
||||||
|
|
||||||
|
- name: Cache Gradle
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.gradle/caches
|
||||||
|
~/.gradle/wrapper
|
||||||
|
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}
|
||||||
|
|
||||||
- name: Get app version
|
- name: Get app version
|
||||||
id: get_version
|
id: get_version
|
||||||
run: echo "VERSION_NAME=$(grep -m1 "versionName" app/build.gradle | awk '{print $2}' | tr -d \''"\')" >> $GITHUB_ENV
|
run: echo "VERSION_NAME=$(grep -m1 "versionName" app/build.gradle | awk '{print $2}' | tr -d \''"\')" >> $GITHUB_ENV
|
||||||
@ -47,8 +55,8 @@ jobs:
|
|||||||
run: ./gradlew assembleDebug
|
run: ./gradlew assembleDebug
|
||||||
|
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
uses: christopherhx/gitea-upload-artifact@v4
|
uses: actions/upload-artifact@v3 # not v4 because of GHES
|
||||||
with:
|
with:
|
||||||
name: apks
|
name: wulkanowy_mod_debug.apk
|
||||||
path: |
|
path: |
|
||||||
app/build/outputs/**/*-debug.apk
|
app/build/outputs/**/*-debug.apk
|
Loading…
x
Reference in New Issue
Block a user