Skip to content

Commit

Permalink
Sync to gcr
Browse files Browse the repository at this point in the history
Signed-off-by: Tamal Saha <[email protected]>
  • Loading branch information
tamalsaha committed Oct 18, 2024
1 parent e2bf928 commit 0742d62
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions .github/workflows/sync-gcp-mp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,36 @@ jobs:

- uses: imjasonh/[email protected]

- name: Log in to the GitHub Container registry
- name: Log into GCR
env:
GCP_MP_SERVICE_ACCOUNT_JSON_KEY: ${{ secrets.GCP_MP_SERVICE_ACCOUNT_JSON_KEY }}
run: |
echo "install gcloud cli"
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo gpg --dearmor -o /usr/share/keyrings/cloud.google.gpg
echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
sudo apt-get -qq update || true
sudo apt-get install google-cloud-cli
echo
echo "configure gcloud auth"
echo "$GCP_MP_SERVICE_ACCOUNT_JSON_KEY" > "$HOME"/gcloud.json
gcloud auth activate-service-account --key-file=$HOME/gcloud.json
gcloud auth configure-docker us-docker.pkg.dev
- name: Log into GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: 1gtm
password: ${{ secrets.LGTM_GITHUB_TOKEN }}

- name: Sync
- name: Sync to GCR
env:
IMAGE_REGISTRY: us-docker.pkg.dev/appscode-public/ace-mp
TAG: ${{ inputs.version }}
run: |
./catalog/sync-gcp-mp-images.sh
- name: Sync to GHCR
env:
IMAGE_REGISTRY: ghcr.io/appscode-gcp-mp/ace-mp
TAG: ${{ inputs.version }}
Expand Down

0 comments on commit 0742d62

Please sign in to comment.