mirror of
https://github.com/gsantner/dandelion
synced 2025-09-10 18:59:42 +02:00
Merge 05d210ae76
into 774c5bec59
This commit is contained in:
commit
2574f8b09f
1 changed files with 10 additions and 10 deletions
20
.github/workflows/build-android-project.yml
vendored
20
.github/workflows/build-android-project.yml
vendored
|
@ -21,24 +21,24 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
- name: "Checkout: Code"
|
||||
uses: actions/checkout@v2
|
||||
|
||||
|
||||
- name: "Checkout: Code (PR)"
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v4
|
||||
if: "contains(github.event_name, 'pull_request')"
|
||||
with:
|
||||
ref: ${{github.event.pull_request.head.ref}}
|
||||
repository: ${{github.event.pull_request.head.repo.full_name}}
|
||||
|
||||
- name: "Setup: Java"
|
||||
uses: actions/setup-java@v1
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
java-version: 1.8
|
||||
java-version: 8
|
||||
distribution: temurin
|
||||
|
||||
- name: "Setup: Install additional dependencies"
|
||||
run: sudo apt-get install -y ispell
|
||||
|
||||
- name: "Cache: Gradle"
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
~/.gradle
|
||||
|
@ -54,14 +54,14 @@ jobs:
|
|||
|
||||
- name: "Artifacts: All"
|
||||
if: always()
|
||||
uses: actions/upload-artifact@v2.2.1
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: "all"
|
||||
path: dist
|
||||
retention-days: 5
|
||||
|
||||
- name: "Artifacts: Android APK"
|
||||
uses: actions/upload-artifact@v2.2.1
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: "android-apk"
|
||||
path: |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue