Skip to content

Commit

Permalink
REP-1119: Trying single quotes on all parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
snottage committed Dec 18, 2020
1 parent ee77395 commit 76f33f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ jobs:
with:
java-version: 8
- name: Publish
run: ./gradlew -Psonatype.user="${{ secrets.SONATYPE_USER }}" -Psonatype.password="${{ secrets.SONATYPE_PASSWORD }}" -Psigning.key='${{ secrets.PGP_SIGNING_KEY }}' -Psigning.password='${{ secrets.PGP_SIGNING_PASSWORD }}' -Ptag.version="${GITHUB_REF/refs\/tags\//}" publish
run: ./gradlew -Psonatype.user='${{ secrets.SONATYPE_USER }}' -Psonatype.password='${{ secrets.SONATYPE_PASSWORD }}' -Psigning.key='${{ secrets.PGP_SIGNING_KEY }}' -Psigning.password='${{ secrets.PGP_SIGNING_PASSWORD }}' -Ptag.version='${GITHUB_REF/refs\/tags\//}' publish
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ publishing {
pom {
name = 'FHR A/B Testing SDK'
description = 'The Fredhopper A/B Testing SDK is a software library which simplifies adding' +
' A/B testing of Fredhopper merchandising rules (and configuration) to your website backend'
' A/B testing of Fredhopper merchandising rules and configuration to your website backend'
url = 'https://github.com/Attraqt/sdk-fhr-ab-testing'
def tagVersion = findProperty("tag.version") as String
version = (tagVersion && !tagVersion.empty)? tagVersion : project.getVersion()
Expand Down

0 comments on commit 76f33f2

Please sign in to comment.