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.
2 parents 3f7c571 + 8e2e986 commit 32f5c42Copy full SHA for 32f5c42
.github/workflows/cd.yml
@@ -23,3 +23,13 @@ jobs:
23
npm ci
24
- name: build
25
run: npm run build
26
+ - name: Set up gcloud CLI
27
+ uses: google-github-actions/setup-gcloud@v2
28
+ with:
29
+ project_id: ${{ secrets.GCP_PROJECT_ID }}
30
+ service_account_key: ${{ secrets.GCP_CREDENTIALS }}
31
+ export_default_credentials: true
32
+ - name: Build and Push Docker Image
33
+ run: |
34
+ IMAGE="us-central1-docker.pkg.dev/${{ secrets.GCP_PROJECT_ID }}/notely-ar-repo/notely-app:latest"
35
+ gcloud builds submit --tag $IMAGE
0 commit comments