Skip to content

Commit

Permalink
chore: fix mount secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
mariojsnunes committed Sep 19, 2024
1 parent 4aaf784 commit b21acfb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ jobs:
command: flyctl auth token $FLY_API_TOKEN --debug --verbose
- run:
name: Mount build secrets
command: RUN --mount=type=secret,id=REACT_APP_BRANCH REACT_APP_BRANCH="$(cat /run/secrets/REACT_APP_BRANCH)" \
command: RUN --mount=type=secret,id=REACT_APP_BRANCH \
--mount=type=secret,id=REACT_APP_CDN_URL \
--mount=type=secret,id=REACT_APP_FIREBASE_API_KEY \
--mount=type=secret,id=REACT_APP_FIREBASE_AUTH_DOMAIN \
Expand All @@ -398,6 +398,7 @@ jobs:
--mount=type=secret,id=VITE_HOWTOS_HEADING \
--mount=type=secret,id=VITE_COMMUNITY_PROGRAM_URL \
--mount=type=secret,id=VITE_QUESTIONS_GUIDELINES_URL \
REACT_APP_BRANCH="$(cat /run/secrets/REACT_APP_BRANCH)" \
REACT_APP_CDN_URL="$(cat /run/secrets/REACT_APP_CDN_URL)" \
REACT_APP_FIREBASE_API_KEY="$(cat /run/secrets/REACT_APP_FIREBASE_API_KEY)" \
REACT_APP_FIREBASE_AUTH_DOMAIN="$(cat /run/secrets/REACT_APP_FIREBASE_AUTH_DOMAIN)" \
Expand Down

0 comments on commit b21acfb

Please sign in to comment.