Skip to content

Commit

Permalink
Add gradle publishing credentials to publish script (#24)
Browse files Browse the repository at this point in the history
* Add gradle publishing credentials to publish script
* Update to gradle 6.5.1
* Remove pull request tests for mac os due to connection problemns downloading dependencies from eclipse.org
  • Loading branch information
king-tyler committed Jul 1, 2020
1 parent 45413d0 commit 2b198c6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Build
run: ./gradlew build --write-locks --info --stacktrace --warning-mode=fail
- name: Publish
run: ./gradlew publishPlugins --info --stacktrace --warning-mode=fail
run: ./gradlew publishPlugins --info --stacktrace --warning-mode=fail "-Pgradle.publish.key=${{ secrets.GRADLE_PUBLISH_KEY }}" "-Pgradle.publish.secret=${{ secrets.GRADLE_PUBLISH_SECRET }}"
- name: Release
run: |
git config user.name '${{ github.event.client_payload.username }}'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest]
jdk: [8, 11]
runs-on: ${{ matrix.os }}

Expand All @@ -16,4 +16,4 @@ jobs:
with:
java-version: ${{ matrix.jdk }}
- name: Build
run: ./gradlew build "-PgradleVersions=6.2.2,current" --info --stacktrace --warning-mode=fail
run: ./gradlew build "-PgradleVersions=6.1.1,current" --info --stacktrace --warning-mode=fail
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ within Gradle. This includes:
* Generates the project's `build.properties` when imported into Eclipse so that dsl project can be launched and tested
within Eclipse PDE.

These plugins have been successfully tested with Gradle 6.2 up to 6.5. They should work with newer versions as well.
These plugins have been successfully tested with Gradle 6.1 up to 6.5. They should work with newer versions as well.

## Usage

Expand Down
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.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 2b198c6

Please sign in to comment.