Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Commit

Permalink
Merge pull request #202 from bigdaz/patch-1
Browse files Browse the repository at this point in the history
Update to the latest gradle-build-action
  • Loading branch information
bmuschko committed Sep 29, 2021
2 parents 90d351e + 6f0521c commit 570f445
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/linux-build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,23 @@ jobs:
with:
java-version: 11
- name: Compilation
uses: eskatos/gradle-command-action@v1
uses: gradle/gradle-build-action@v2
with:
arguments: classes
- name: Unit tests
uses: eskatos/gradle-command-action@v1
uses: gradle/gradle-build-action@v2
with:
arguments: test
- name: Integration tests
uses: eskatos/gradle-command-action@v1
uses: gradle/gradle-build-action@v2
with:
arguments: integrationTest
- name: Functional tests
uses: eskatos/gradle-command-action@v1
uses: gradle/gradle-build-action@v2
with:
arguments: functionalTest
- name: Assemble artifact
uses: eskatos/gradle-command-action@v1
uses: gradle/gradle-build-action@v2
with:
arguments: assemble
- name: Store artifact
Expand All @@ -39,6 +39,6 @@ jobs:
path: build/libs/*.jar
- name: Release
if: startsWith(github.ref, 'refs/tags/')
uses: eskatos/gradle-command-action@v1
uses: gradle/gradle-build-action@v2
with:
arguments: publishPlugins gitPublishPush -Pgradle.publish.key=${{ secrets.PLUGIN_PORTAL_KEY }} -Pgradle.publish.secret=${{ secrets.PLUGIN_PORTAL_SECRET }} -Dorg.ajoberstar.grgit.auth.username=${{ secrets.GH_TOKEN }} -is

0 comments on commit 570f445

Please sign in to comment.