Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: DanySK/build-check-deploy-gradle-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.0.0
Choose a base ref
...
head repository: DanySK/build-check-deploy-gradle-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.0.1
Choose a head ref
  • 4 commits
  • 3 files changed
  • 3 contributors

Commits on Jun 1, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    55dcbb0 View commit details

Commits on Jun 3, 2022

  1. Copy the full SHA
    ca7d11f View commit details
  2. fix: assignment of maven-centra-{username, password} to gradle proper…

    …ties in deploy (#133)
    
    * fix: assignment of maven-centra-{username, password} to gradle properties in deploy
    
    * fix: restore `default: true` for input `should-run-codecov`
    gciatto authored Jun 3, 2022
    Copy the full SHA
    2734a78 View commit details
  3. chore(release): 2.0.1 [skip ci]

    ## [2.0.1](2.0.0...2.0.1) (2022-06-03)
    
    ### Bug Fixes
    
    * assignment of maven-centra-{username, password} to gradle properties in deploy ([#133](#133)) ([2734a78](2734a78))
    
    ### Build and continuous integration
    
    * **deps:** update danysk/template-for-gradle-plugins digest to 9cef8d9 ([55dcbb0](55dcbb0))
    * **deps:** update danysk/template-for-gradle-plugins digest to f7aa286 ([ca7d11f](ca7d11f))
    semantic-release-bot committed Jun 3, 2022
    Copy the full SHA
    2bffa10 View commit details
Showing with 17 additions and 3 deletions.
  1. +1 −1 .github/workflows/test.yml
  2. +13 −0 CHANGELOG.md
  3. +3 −2 action.yml
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ jobs:
# Idea: the regex matcher of Renovate keeps this string up to date automatically
# The version is extracted and used to access the correct version of the scripts
USES=$(cat <<TRICK_RENOVATE
- uses: DanySK/Template-for-Gradle-Plugins@c3a70187ad3dd715663931ddad0208b68bd3f613
- uses: DanySK/Template-for-Gradle-Plugins@f7aa2867fad353e6a478b4b681c2037d01cf6490
TRICK_RENOVATE
)
echo "Scripts update line: \"$USES\""
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## [2.0.1](https://github.com/DanySK/build-check-deploy-gradle-action/compare/2.0.0...2.0.1) (2022-06-03)


### Bug Fixes

* assignment of maven-centra-{username, password} to gradle properties in deploy ([#133](https://github.com/DanySK/build-check-deploy-gradle-action/issues/133)) ([2734a78](https://github.com/DanySK/build-check-deploy-gradle-action/commit/2734a781782feec7641373581c5156a6b2c59223))


### Build and continuous integration

* **deps:** update danysk/template-for-gradle-plugins digest to 9cef8d9 ([55dcbb0](https://github.com/DanySK/build-check-deploy-gradle-action/commit/55dcbb08a1fb12b57ac42123ea928b055c330720))
* **deps:** update danysk/template-for-gradle-plugins digest to f7aa286 ([ca7d11f](https://github.com/DanySK/build-check-deploy-gradle-action/commit/ca7d11fd2cecd3e2e0ba8a1212a02406c6f27fe1))

## [2.0.0](https://github.com/DanySK/build-check-deploy-gradle-action/compare/1.2.16...2.0.0) (2022-06-01)


5 changes: 3 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
@@ -43,6 +43,7 @@ inputs:
required: false
should-run-codecov:
description: 'True if the action should send coverage results to codecov.io'
default: true
required: false
should-deploy:
description: 'True if the deploy operation should be executed'
@@ -187,8 +188,8 @@ runs:
# Gradle-specific exports, see:
# https://docs.gradle.org/current/userguide/build_environment.html#sec:project_properties
ORG_GRADLE_PROJECT_mavenRepo: ${{ inputs.maven-central-repo }}
ORG_GRADLE_PROJECT_mavenUsername: ${{ inputs.maven-central-password }}
ORG_GRADLE_PROJECT_mavenPassword: ${{ inputs.maven-central-username }}
ORG_GRADLE_PROJECT_mavenUsername: ${{ inputs.maven-central-username }}
ORG_GRADLE_PROJECT_mavenPassword: ${{ inputs.maven-central-password }}
ORG_GRADLE_PROJECT_signingKey: ${{ inputs.signing-key }}
ORG_GRADLE_PROJECT_signingPassword: ${{ inputs.signing-password }}
ORG_GRADLE_PROJECT_npmRepo: ${{ inputs.npm-repo }}