Skip to content
Merged

Dev #287

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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,11 @@ CHANGELOG.md was changed

VERSION was changed


action.yml was changed


## 1.8.6
## 1.8.7-SNAPSHOT.7.sha.04051dfbc

### Files added: 0

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.6
1.8.7-SNAPSHOT.7.sha.04051dfbc
4 changes: 3 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,9 @@ runs:
- name: If Google application credentials input exists, create Google application credentials file and set exist
id: check_google_application_credentials
run: |
printf %s "${{ inputs.GOOGLE_APPLICATION_CREDENTIALS }}" > gcp.json
cat > gcp.json <<'EOF'
${{ inputs.GOOGLE_APPLICATION_CREDENTIALS }}
EOF
echo "${{ inputs.GOOGLE_APPLICATION_CREDENTIALS_PREFIX }}GOOGLE_APPLICATION_CREDENTIALS=/app/config/gcp.json" >> .env
chmod 700 gcp.json
echo "exists=true" >> $GITHUB_OUTPUT
Expand Down