Skip to content
Merged

Dev #286

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ action.yml was changed

action.yml was changed


## 1.8.4

### Files added: 0
Expand All @@ -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


2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.5
1.8.6-SNAPSHOT.4.sha.e878005b0
14 changes: 4 additions & 10 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down