Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit 94b1df5d authored by Nicolas's avatar Nicolas
Browse files

fix: base64 invalid input

parent aac32502
No related branches found
No related tags found
No related merge requests found
...@@ -202,10 +202,11 @@ destroy-psc: ...@@ -202,10 +202,11 @@ destroy-psc:
GCP_DNS_ZONE_GKE_ELASTIC: $GCP_DNS_ZONE_GKE_ELASTIC GCP_DNS_ZONE_GKE_ELASTIC: $GCP_DNS_ZONE_GKE_ELASTIC
EC_SERVICE_ATTACHMENT_URI: $EC_SERVICE_ATTACHMENT_URI EC_SERVICE_ATTACHMENT_URI: $EC_SERVICE_ATTACHMENT_URI
EC_DNS_ZONE: $EC_DNS_ZONE EC_DNS_ZONE: $EC_DNS_ZONE
GCP_SERVICE_ACCOUNT: $GCP_SA
before_script: before_script:
- echo "$GCP_SA" | base64 -di > gcp-sa.json - echo "$GCP_SERVICE_ACCOUNT" | base64 -di > gcp-sa.json
- ls -la - ls -la
- echo "$GCP_SA" | base64 -di > gcp-sa.json - echo "$GCP_SERVICE_ACCOUNT" | base64 -di > gcp-sa.json
- ls -la - ls -la
- gcloud auth activate-service-account --key-file gcp-sa.json - gcloud auth activate-service-account --key-file gcp-sa.json
- echo "Activate Service Account OK" - echo "Activate Service Account OK"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment