Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTrunk committed Mar 17, 2024
1 parent 3b21065 commit 161ac65
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/android_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: android-build
on:
push:
# Pattern matched against refs/tags
tags:
- "**" # Push events to every tag including hierarchical tags like v1.0/beta
#tags:
# - "**" # Push events to every tag including hierarchical tags like v1.0/beta
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Expand All @@ -28,6 +28,19 @@ jobs:
needs: install-and-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
- name: Install npm dependencies
run: |
yarn
- name: Decode Keystore
id: decode_keystore
uses: timheuer/base64-to-file@v1
Expand Down Expand Up @@ -58,4 +71,4 @@ jobs:
uses: actions/upload-artifact@v1
with:
name: app-release.aab
path: android/app/build/outputs/bundle/release/
path: android/app/build/outputs/bundle/release/

0 comments on commit 161ac65

Please sign in to comment.