We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c29dc16 commit 8ad14a1Copy full SHA for 8ad14a1
.github/workflows/deploy-docker.yml
@@ -15,6 +15,14 @@ jobs:
15
- name: Check out repository
16
uses: actions/checkout@v3
17
18
+ # Create the secret file "google-services.json" from the repo secret
19
+ - name: Create google-services.json
20
+ run: echo "${{ secrets.GOOGLE_SERVICES_JSON }}" > google-services.json
21
+
22
+ # Create a .env file from a repo secret (if needed)
23
+ - name: Create .env file
24
+ run: echo "${{ secrets.ENV_FILE_CONTENT }}" > .env
25
26
- name: Build Docker image
27
run: |
28
docker build -t codebuilder-webapp:latest .
0 commit comments