refactor: simplify, create and delete integration tests #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v2 | |
with: | |
workload_identity_provider: projects/791837997629/locations/global/workloadIdentityPools/github-actions-pool/providers/gha-id-pool-provider | |
service_account: [email protected] | |
- 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 |