diff --git a/CHANGELOG.md b/CHANGELOG.md index 70e854b4d..ff9960d85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,7 +32,6 @@ action.yml was changed action.yml was changed - ## 1.8.4 ### Files added: 0 @@ -57,3 +56,16 @@ CHANGELOG.md was changed VERSION was changed +## 1.8.6-SNAPSHOT.4.sha.e878005b0 + +### Files added: 0 + +### Files changed: 3 + +CHANGELOG.md was changed + +VERSION was changed + +action.yml was changed + + diff --git a/VERSION b/VERSION index 8decb929b..a1758250e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.8.5 +1.8.6-SNAPSHOT.4.sha.e878005b0 diff --git a/action.yml b/action.yml index 42a849e96..b6b4fe647 100644 --- a/action.yml +++ b/action.yml @@ -216,16 +216,10 @@ runs: - name: If Google application credentials input exists, create Google application credentials file and set exist id: check_google_application_credentials run: | - if [ -n "${{ inputs.GOOGLE_APPLICATION_CREDENTIALS }}" ]; then - echo "GOOGLE_APPLICATION_CREDENTIALS found." - echo "${{ inputs.GOOGLE_APPLICATION_CREDENTIALS }}" > gcp.json - echo "${{ inputs.GOOGLE_APPLICATION_CREDENTIALS_PREFIX }}GOOGLE_APPLICATION_CREDENTIALS=/app/config/gcp.json" >> .env - chmod 700 gcp.json - echo "exists=true" >> $GITHUB_OUTPUT - else - echo "GOOGLE_APPLICATION_CREDENTIALS not found." - echo "exists=false" >> $GITHUB_OUTPUT - fi + printf %s "${{ inputs.GOOGLE_APPLICATION_CREDENTIALS }}" > gcp.json + echo "${{ inputs.GOOGLE_APPLICATION_CREDENTIALS_PREFIX }}GOOGLE_APPLICATION_CREDENTIALS=/app/config/gcp.json" >> .env + chmod 700 gcp.json + echo "exists=true" >> $GITHUB_OUTPUT shell: bash - name: Multiple google application credentials, create files and set env variables