Skip to content

Commit 6a0c898

Browse files
committed
Refactor: remove Docker container and grant gradlew execute permission in Android workflow
The Docker container previously used for setting up the environment in the Android GitHub Actions workflow has been removed. Additionally, the workflow now explicitly grants execute permission to the `gradlew` script before executing it.
1 parent c6700de commit 6a0c898

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/android.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ jobs:
1919
setup:
2020
name: Setup Environment
2121
runs-on: ubuntu-latest
22-
# container:
23-
# image: softartdev/android-fastlane:33
22+
2423
steps:
2524
- name: Checkout Repository
2625
uses: actions/checkout@v3
@@ -73,6 +72,8 @@ jobs:
7372
needs: setup
7473
steps:
7574
- uses: actions/checkout@v3
75+
- name: Grant execute permission for gradlew
76+
run: chmod +x ./gradlew
7677
- uses: actions/setup-java@v3
7778
with:
7879
java-version: '17'

0 commit comments

Comments
 (0)