We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6155968 commit 62e2f49Copy full SHA for 62e2f49
docker-push/README.md
@@ -22,6 +22,8 @@ jobs:
22
steps:
23
- name: Checkout code
24
uses: actions/checkout@v4
25
+ with:
26
+ ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.ref }}
27
- name: Build Docker image
28
id: build
29
run: ...
@@ -33,7 +35,6 @@ jobs:
33
35
image_tags: |
34
36
us-docker.pkg.dev/moz-fx-tenant-realm/tenant-realm/my-image:latest
37
us-docker.pkg.dev/moz-fx-tenant-realm/tenant-realm/my-image:v1.0.0
- workload_identity_pool_project_number: 123456789012
38
project_id: moz-fx-tenant-realm
- deployment_env: ${{ vars.GCPV2_WORKLOAD_IDENTITY_POOL_PROJECT_NUMBER }}
39
+ workload_identity_pool_project_number: ${{ vars.GCPV2_WORKLOAD_IDENTITY_POOL_PROJECT_NUMBER }}
40
```
0 commit comments