Skip to content

Commit

Permalink
fix(android): fix android actions order
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdullahFaqeir committed Sep 14, 2024
1 parent 0a67fc9 commit 6eb38bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup Android SDK
uses: android-actions/setup-android@v3

- name: Setup Android SDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'

- name: Setup Android SDK
uses: android-actions/setup-android@v3

- name: Retrieve package version
run: |
PACKAGE_VERSION=$(sed -n 's/^ *"version": *"//p' package.json | tr -d '"' | tr -d ',' | tr -d '[[:space:]]')
echo "packageVersion=${PACKAGE_VERSION}" >> $GITHUB_ENV
- name: Use Node.js 18.x
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '18.x'
Expand Down

0 comments on commit 6eb38bb

Please sign in to comment.