Skip to content

Commit

Permalink
Update the Gradle Build Action (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
daytime-em authored Feb 16, 2024
1 parent d1593fd commit e98e79b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# This step will build all modules configured for publication and publish them
# Does your project publish multiple libraries in a dependency chain? You'll have to add another copy of this step and build the dependency in the first one
- name: Build and Publish to Dev Repo
uses: gradle/gradle-build-action@v2.3.3
uses: gradle/gradle-build-action@v3.1.0
with:
arguments: artifactoryPublish
env:
Expand All @@ -46,7 +46,7 @@ jobs:
java-version: '17'
distribution: 'temurin'
- name: Unit Tests
uses: gradle/gradle-build-action@v2.3.3
uses: gradle/gradle-build-action@v3.1.0
with:
arguments: test

2 changes: 1 addition & 1 deletion .github/workflows/artifactory-deploy-from-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# This step will build all modules configured for publication and publish them
# Does your project publish multiple libraries in a dependency chain? You'll have to add another copy of this step and build the dependency in the first one
- name: Deploy to Release Repo
uses: gradle/gradle-build-action@v2.3.3
uses: gradle/gradle-build-action@v3.1.0
with:
arguments: artifactoryPublish
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/saucelabs-tests-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
java-version: '17'
distribution: 'temurin'
- name: Build automated tests
uses: gradle/gradle-build-action@v2.3.3
uses: gradle/gradle-build-action@v3.1.0
with:
arguments: automatedtests:assembleDebug :automatedtests:assembleDebugAndroidTest
- name: Upload Test APKs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-dokka-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
# If you have a multi-module project or monorepo, you'll need to repeat these steps
# POSSIBLE CONFIGURATION: make sure the `arguments:` tag matches the correct task(s) for your project
- name: Build Dokka Docs
uses: gradle/gradle-build-action@v2.4.2
uses: gradle/gradle-build-action@v3.1.0
with:
arguments: ':library:dokkaHtml'
# REQUIRED CONFIGURATION: You have to change player-android to a suitable URL slug for your project
Expand Down

0 comments on commit e98e79b

Please sign in to comment.