Update build-release-apk.yml

This commit is contained in:
Marcos Rodriguez Vélez 2024-09-09 23:53:30 -04:00 committed by GitHub
parent 3dfedf1bd0
commit 4bc7e53a6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,7 +25,7 @@ jobs:
node-version: 20 node-version: 20
- name: Use npm caches - name: Use npm caches
uses: actions/cache@v3 uses: actions/cache@v4
with: with:
path: ~/.npm path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
@ -49,7 +49,7 @@ jobs:
bundler-cache: true bundler-cache: true
- name: Cache Ruby Gems - name: Cache Ruby Gems
uses: actions/cache@v3 uses: actions/cache@v4
with: with:
path: vendor/bundle path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
@ -90,7 +90,7 @@ jobs:
echo "APK_PATH=${APK_PATH}" >> $GITHUB_ENV echo "APK_PATH=${APK_PATH}" >> $GITHUB_ENV
- name: Upload APK as artifact - name: Upload APK as artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: signed-apk name: signed-apk
path: ${{ env.APK_PATH }} path: ${{ env.APK_PATH }}
@ -114,7 +114,7 @@ jobs:
run: bundle install --jobs 4 --retry 3 run: bundle install --jobs 4 --retry 3
- name: Download APK artifact - name: Download APK artifact
uses: actions/download-artifact@v3 uses: actions/download-artifact@v4
with: with:
name: signed-apk name: signed-apk