Skip to content

Commit

Permalink
Replace printf with echo (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
yhtMinceraft1010X authored Oct 19, 2023
1 parent 80efdd4 commit 1efeca0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
# Copy the JSON secrets (Firebase configs) into JSON files
- name: Copy JSON secrets into JSON files
run: |-
printf "$FIREBASE_SERVICE_ACCOUNT" > ./firebase_service_account.json
printf "$NEXT_PUBLIC_FRONTEND_FIREBASE_CONFIG" > ./next_public_frontend_firebase_config.json
echo -n "$FIREBASE_SERVICE_ACCOUNT" > ./firebase_service_account.json
echo -n "$NEXT_PUBLIC_FRONTEND_FIREBASE_CONFIG" > ./next_public_frontend_firebase_config.json
# Set the secrets that are used as env variables in the manifest files
- name: Set kubectl secrets
Expand Down

0 comments on commit 1efeca0

Please sign in to comment.