-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow to build + push image to GAR from this repo (#984)
- Loading branch information
1 parent
45834bb
commit 9e9902b
Showing
1 changed file
with
77 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: Build image and push to GAR | ||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- v[0-9]+.[0-9]+.[0-9]+ | ||
|
||
env: | ||
GAR_LOCATION: us | ||
GAR_REPOSITORY: ctms-prod | ||
GCP_PROJECT_ID: moz-fx-ctms-prod | ||
IMAGE: ctms | ||
IMAGE_PLATFORMS: linux/amd64,linux/arm64 | ||
|
||
jobs: | ||
build: | ||
name: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
|
||
- id: determine_tag | ||
name: determine tag | ||
run: |- | ||
TAG=$(git describe --tags) | ||
printf "\e[1;36m[INFO]\e[0m \$TAG=\"${TAG}\"\n" | ||
echo TAG=${TAG} >> ${GITHUB_OUTPUT} | ||
- id: meta | ||
name: generate Docker image metadata | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: ${{ env.GAR_LOCATION }}-docker.pkg.dev/${{ env.GCP_PROJECT_ID }}/${{ env.GAR_REPOSITORY }}/${{ env.IMAGE }} | ||
# https://github.com/marketplace/actions/docker-metadata-action#tags-input | ||
tags: | | ||
type=raw,value=${{ steps.determine_tag.outputs.TAG }} | ||
type=raw,value=latest | ||
- id: generate_version_json | ||
name: generate version.json | ||
run: |- | ||
printf '{"commit":"%s","version":"%s","source":"%s","build":"%s"}\n' \ | ||
"$(git rev-parse HEAD)" \ | ||
"${{ steps.determine_tag.outputs.TAG }}" \ | ||
"${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}" \ | ||
"${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}" | tee version.json | ||
- id: gcp_auth | ||
name: gcp auth | ||
uses: google-github-actions/auth@v2 | ||
with: | ||
token_format: access_token | ||
service_account: artifact-writer@${{ env.GCP_PROJECT_ID }}.iam.gserviceaccount.com | ||
workload_identity_provider: projects/${{ var.GCPV2_GITHUB_WORKLOAD_IDENTITY_PROVIDER }}/locations/global/workloadIdentityPools/github-actions/providers/github-actions | ||
|
||
- id: docker_login | ||
name: docker login | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ${{ env.GAR_LOCATION }}-docker.pkg.dev | ||
username: oauth2accesstoken | ||
password: ${{ steps.gcp_auth.outputs.access_token }} | ||
|
||
- id: build_and_push | ||
name: build and push | ||
uses: docker/build-push-action@v5 | ||
with: | ||
platforms: ${{ env.IMAGE_PLATFORMS }} | ||
context: . | ||
tags: ${{ steps.meta.outputs.tags }} | ||
push: true | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max |