Skip to content

Commit

Permalink
correct scripts for running checks
Browse files Browse the repository at this point in the history
  • Loading branch information
ToppleTheNun committed Feb 5, 2021
1 parent 91d0cc2 commit 161616b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Set Gradle Version
run: ./gradlew wrapper --gradle-version ${{ matrix.gradle }}
- name: Test Plugin Directly with Gradle
run: ./gradlew check
run: ../gradlew check
working-directory: pixeloutlaw-gradle-plugin
- name: Test Plugin Application with Gradle
run: ./gradlew check
2 changes: 1 addition & 1 deletion .github/workflows/push_to_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Set Gradle Version
run: ./gradlew wrapper --gradle-version 6.8.2
- name: Test Plugin Directly with Gradle
run: ./gradlew check
run: ../gradlew check
working-directory: pixeloutlaw-gradle-plugin
- name: Test Plugin Application with Gradle
run: ./gradlew check
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,8 @@ jobs:
- name: Make Gradle Wrapper Executable
run: chmod +x ./gradlew
- name: Write Plugin Publishing Values
run: ../gradlew writePublishPluginSecrets
run: ./gradlew :pixeloutlaw-gradle-plugin:writePublishPluginSecrets
env:
CI: true
working-directory: pixeloutlaw-gradle-plugin
- name: Publish Plugins to Gradle Plugin Portal
run: ../gradlew publishPlugins
working-directory: pixeloutlaw-gradle-plugin
run: ./gradlew :pixeloutlaw-gradle-plugin:publishPlugins -P
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 161616b

Please sign in to comment.