Skip to content

Commit

Permalink
Fix CI configuration
Browse files Browse the repository at this point in the history
Signed-off-by: Saul Henriquez <saul_henriquez@hotmail.com>
  • Loading branch information
saulhdev committed Sep 4, 2023
1 parent cfce75f commit c6c97fb
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Omega Feeder CI
name: Neo Feeder CI
on:
push:
branches: [ main ]
Expand All @@ -9,12 +9,14 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v1.4.3
uses: actions/checkout@v3
with:
java-version: 17
- uses: actions/cache@v2.1.4
distribution: 'temurin'
cache: gradle
- uses: actions/cache@v3
with:
path: |
~/.gradle/caches
Expand All @@ -36,7 +38,7 @@ jobs:
echo "ARTIFACT_PATHNAME_APK=${ARTIFACT_PATHNAME_APK}" >> $GITHUB_ENV
echo "ARTIFACT_NAME_APK=${ARTIFACT_NAME_APK}" >> $GITHUB_ENV
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: ${{ env.ARTIFACT_NAME_APK }}
path: ${{ env.ARTIFACT_PATHNAME_APK }}

0 comments on commit c6c97fb

Please sign in to comment.