Skip to content

chore: debug ocid token claims #13

chore: debug ocid token claims

chore: debug ocid token claims #13

Workflow file for this run

name: Docker Image
on:
push:
branches:
- main
jobs:
build-and-push-image:
name: "Synchro Image"
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- name: GCP Workload Identity Auth
id: auth
uses: google-github-actions/auth@v1
with:
workload_identity_provider: projects/791837997629/locations/global/workloadIdentityPools/github-actions-pool/providers/gha-id-pool-provider
service_account: [email protected]
- name: Debug OIDC Claims
uses: ./.github/actions/actions-oidc-debugger
with:
audience: '${{ github.server_url }}/${{ github.repository_owner }}'
- name: "Auth to AR"
run: gcloud auth configure-docker us-east4-docker.pkg.dev
- name: "Build Docker Image"
run: |
docker build . \
-f Dockerfile \
-t us-east4-docker.pkg.dev/surface-420608/stable/synchro-kotlin:${GITHUB_SHA::6} \
-t us-east4-docker.pkg.dev/surface-420608/stable/synchro-kotlin:latest
- name: "Push Docker Image to AR"
run: |
docker push us-east4-docker.pkg.dev/surface-420608/stable/synchro-kotlin:${GITHUB_SHA::6}
docker push us-east4-docker.pkg.dev/surface-420608/stable/synchro-kotlin:latest