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

Commit

Permalink
Update to the latest gradle-build-action
Browse files Browse the repository at this point in the history
The action id `eskatos/gradle-command-action` has been replaced by `gradle/gradle-build-action`.
This PR switches to the new action id, and updates to test the latest `v2` version (presently `v2.0-beta.2`).
  • Loading branch information
bigdaz authored Sep 28, 2021
1 parent 90d351e commit 6f0521c
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 6f0521c

Please sign in to comment.