Skip to content

Commit

Permalink
use direct gradlew instead of action
Browse files Browse the repository at this point in the history
  • Loading branch information
AmniX committed Oct 21, 2024
1 parent 67eeb02 commit e865af6
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@ jobs:
echo "SDK_VERSION=${TAG#v}" >> $GITHUB_ENV
- name: Deploy
uses: gradle/gradle-build-action@v3
with:
arguments: ${{ matrix.target }} --no-configuration-cache --no-daemon
run: chmod +x gradlew && ./gradlew ${{ matrix.target }} --no-configuration-cache --no-daemon
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.OSSRH_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.OSSRH_PASSWORD }}
Expand Down Expand Up @@ -81,7 +79,10 @@ jobs:
echo Version: TAG
echo "SDK_VERSION=${TAG#v}" >> $GITHUB_ENV
- name: Setup local.properties
run: touch local.properties && echo "TEST_SERVER_URL=$TEST_SERVER_URL" >> local.properties
run: |
touch local.properties
echo "TEST_SERVER_URL=${{ secrets.TEST_SERVER_URL }}" >> local.properties
cat local.properties
- name: Build SoundBud!
run: ./gradlew :example-android:assembleDevRelease
- name: Publish SoundBud!
Expand Down

0 comments on commit e865af6

Please sign in to comment.