Skip to content

Commit

Permalink
chore: use google artifact registry (#523)
Browse files Browse the repository at this point in the history
  • Loading branch information
incubator4 committed Sep 4, 2024
1 parent 8b36c72 commit 9dc0283
Showing 1 changed file with 44 additions and 12 deletions.
56 changes: 44 additions & 12 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ on:
- "*"
pull_request:

permissions:
contents: read
id-token: write
pull-requests: write
packages: write

env:
GAR_REGISTRY: us-central1-docker.pkg.dev/rss3-409706/docker

jobs:
build:
runs-on:
Expand All @@ -31,25 +40,35 @@ jobs:
uses: docker/setup-buildx-action@v3
with:
platforms: ${{ matrix.platform }}
- name: Log in to the Container registry

- name: Google auth
id: auth
uses: google-github-actions/auth@v2
with:
token_format: access_token
workload_identity_provider: projects/987979088361/locations/global/workloadIdentityPools/github/providers/github-action
service_account: [email protected]
create_credentials_file: true

- name: Login to GAR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
registry: us-central1-docker.pkg.dev
username: oauth2accesstoken
password: ${{ steps.auth.outputs.access_token }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/rss3-network/node
images: ${{ env.GAR_REGISTRY }}/node
- name: Build and push by digest
id: build
uses: docker/build-push-action@v6
with:
context: .
platforms: ${{ matrix.platform }}
labels: ${{ steps.meta.outputs.labels }}
outputs: type=image,name=ghcr.io/rss3-network/node,push-by-digest=true,name-canonical=true,push=${{ github.actor != 'dependabot[bot]' }}
outputs: type=image,name=${{ env.GAR_REGISTRY }}/node,push-by-digest=true,name-canonical=true,push=${{ github.actor != 'dependabot[bot]' }}
- name: Export digest
if: github.actor != 'dependabot[bot]'
run: |
Expand All @@ -66,10 +85,6 @@ jobs:
retention-days: 1
merge:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
needs:
- build
if: github.actor != 'dependabot[bot]'
Expand All @@ -96,13 +111,30 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Google auth
id: auth
uses: google-github-actions/auth@v2
with:
token_format: access_token
workload_identity_provider: projects/987979088361/locations/global/workloadIdentityPools/github/providers/github-action
service_account: [email protected]
create_credentials_file: true

- name: Login to GAR
uses: docker/login-action@v3
with:
registry: us-central1-docker.pkg.dev
username: oauth2accesstoken
password: ${{ steps.auth.outputs.access_token }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: |
rss3/node
ghcr.io/${{ github.repository }}
${{ env.GAR_REGISTRY }}/node
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=raw,value=${{ matrix.arch }},enable={{is_default_branch}}
Expand All @@ -120,8 +152,8 @@ jobs:
ARGS="--dry-run"
fi
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
$(printf 'ghcr.io/rss3-network/node@sha256:%s ' *) $ARGS
$(printf '${{ env.GAR_REGISTRY }}/node@sha256:%s ' *) $ARGS
- name: Inspect image
if: github.event_name != 'pull_request'
run: |
docker buildx imagetools inspect ghcr.io/rss3-network/node:${{ steps.meta.outputs.version }}
docker buildx imagetools inspect ${{ env.GAR_REGISTRY }}/node:${{ steps.meta.outputs.version }}

0 comments on commit 9dc0283

Please sign in to comment.