Skip to content

Commit

Permalink
fix gradle task name in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolSpy3 committed Aug 4, 2023
1 parent 67a8bf4 commit 9395f4a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/run-system-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
run: |
# This is also a test that our plugin installs DeepBlueSim if one of WPILib's simulate
# tasks is executed.
./gradlew :example:externalSimulate --info --stacktrace
./gradlew :example:simulateExternalJavaRelease --info --stacktrace
shell: bash

- name: Start Webots
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
strategy:
strategy:
fail-fast: false
matrix:
os: [ windows-latest, macos-latest, ubuntu-latest ]
Expand All @@ -31,7 +31,7 @@ jobs:
uses: DeepBlueRobotics/setup-webots@v1
with:
install: false

- name: Cache Webots
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
uses: DeepBlueRobotics/setup-webots@v1
with:
install: false

- name: Cache Webots
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -108,10 +108,9 @@ jobs:

- name: Tag
run: git tag ${{ steps.version.outputs.version_tag }}

- name: Push
run: git push origin ${{ steps.version.outputs.version_tag }}

- name: Publish to Gradle Plugin Portal
run: ./gradlew :plugin:publishPlugins -Pversion=${{ steps.version.outputs.version }} -Pgradle.publish.key=${{ secrets.GRADLE_PUBLISH_KEY }} -Pgradle.publish.secret=${{ secrets.GRADLE_PUBLISH_SECRET }} --info --stacktrace

0 comments on commit 9395f4a

Please sign in to comment.