chore(deps): bump config from 0.15.22 to 0.15.23 (#2085) #408
This file contains hidden or 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: Mono Engine deploy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/mono-engine-deploy.yml" | |
| - "api-model/**" | |
| - "ceres/**" | |
| - "common/**" | |
| - "context/**" | |
| - "io-orbit/**" | |
| - "jupiter/**" | |
| - "mono/**" | |
| - "saturn/**" | |
| - "vault/**" | |
| - "Cargo.toml" | |
| env: | |
| REGISTRY_ALIAS: m8q5m4u3 | |
| REPOSITORY: mega/mono-engine | |
| GCP_PROJECT_ID: infra-20250121-20260121-0235 | |
| IMAGE_TAG_BASE: latest | |
| # Using AWS access key for authentication | |
| permissions: | |
| id-token: write | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-push-single-arch: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| # ----------------------------- | |
| # AWS / ECR Public | |
| # ----------------------------- | |
| - name: Configure AWS Credentials | |
| uses: aws-actions/configure-aws-credentials@v4 | |
| with: | |
| aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| aws-region: us-east-1 | |
| - name: Login to Amazon ECR Public | |
| id: login-ecr-public | |
| uses: aws-actions/amazon-ecr-login@v2 | |
| with: | |
| registry-type: public | |
| # ----------------------------- | |
| # GCP / Artifact Registry | |
| # ----------------------------- | |
| - name: Auth to GCP | |
| uses: google-github-actions/auth@v2 | |
| with: | |
| credentials_json: ${{ secrets.GCP_SA_KEY }} | |
| - name: Configure docker for GCP | |
| run: | | |
| gcloud auth configure-docker us-central1-docker.pkg.dev | |
| # ----------------------------- | |
| # Build once, push to both | |
| # ----------------------------- | |
| - name: Build & push image to ECR + GCP (amd64) | |
| env: | |
| ECR_REGISTRY: ${{ steps.login-ecr-public.outputs.registry }} | |
| IMAGE_TAG_BASE: ${{ env.IMAGE_TAG_BASE }} | |
| run: | | |
| set -euo pipefail | |
| ARCH_SUFFIX=amd64 | |
| IMAGE_TAG="${IMAGE_TAG_BASE}-${ARCH_SUFFIX}" | |
| ECR_IMAGE="$ECR_REGISTRY/${{ env.REGISTRY_ALIAS }}/${{ env.REPOSITORY }}:$IMAGE_TAG" | |
| GCP_IMAGE="us-central1-docker.pkg.dev/${{ env.GCP_PROJECT_ID }}/${{ env.REPOSITORY }}:$IMAGE_TAG" | |
| ECR_CACHE_IMAGE="$ECR_REGISTRY/${{ env.REGISTRY_ALIAS }}/${{ env.REPOSITORY }}:buildcache-${ARCH_SUFFIX}" | |
| CACHE_SCOPE="mono-engine-${ARCH_SUFFIX}" | |
| echo "ECR_IMAGE=$ECR_IMAGE" | |
| echo "GCP_IMAGE=$GCP_IMAGE" | |
| echo "ECR_CACHE_IMAGE=$ECR_CACHE_IMAGE" | |
| echo "CACHE_SCOPE=$CACHE_SCOPE" | |
| docker buildx build \ | |
| --cache-from type=gha,scope=$CACHE_SCOPE \ | |
| --cache-from type=registry,ref=$ECR_CACHE_IMAGE \ | |
| --cache-to type=gha,mode=max,scope=$CACHE_SCOPE \ | |
| --cache-to type=registry,ref=$ECR_CACHE_IMAGE,mode=max \ | |
| --provenance=false \ | |
| --sbom=false \ | |
| -f ./mono/Dockerfile \ | |
| -t "$ECR_IMAGE" \ | |
| -t "$GCP_IMAGE" \ | |
| --push . | |
| manifest: | |
| needs: build-push-single-arch | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Configure AWS Credentials | |
| uses: aws-actions/configure-aws-credentials@v4 | |
| with: | |
| aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| aws-region: us-east-1 | |
| - name: Login to Amazon ECR Public | |
| id: login-ecr-public | |
| uses: aws-actions/amazon-ecr-login@v2 | |
| with: | |
| registry-type: public | |
| - name: Create & push manifest | |
| env: | |
| REGISTRY: ${{ steps.login-ecr-public.outputs.registry }} | |
| run: | | |
| IMAGE_BASE="$REGISTRY/${{ env.REGISTRY_ALIAS }}/${{ env.REPOSITORY }}" | |
| docker manifest create "$IMAGE_BASE:${{ env.IMAGE_TAG_BASE }}" \ | |
| "$IMAGE_BASE:${{ env.IMAGE_TAG_BASE }}-amd64" \ | |
| "$IMAGE_BASE:${{ env.IMAGE_TAG_BASE }}-arm64" | |
| docker manifest push "$IMAGE_BASE:${{ env.IMAGE_TAG_BASE }}" | |
| deploy-aws: | |
| needs: manifest | |
| if: ${{ github.repository == 'web3infra-foundation/mega' }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| strategy: | |
| matrix: | |
| include: | |
| - cluster: gitmega-com | |
| service: mono-engine-dev-service-xnmoxhxb | |
| - cluster: gitmono-com-mega-app | |
| service: mono-engine | |
| steps: | |
| - name: Force ECS redeploy | |
| run: | | |
| aws ecs update-service \ | |
| --cluster ${{ matrix.cluster }} \ | |
| --service ${{ matrix.service }} \ | |
| --force-new-deployment | |
| env: | |
| AWS_REGION: ap-southeast-2 | |
| AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| deploy-gcp: | |
| needs: manifest | |
| if: ${{ github.repository == 'web3infra-foundation/mega' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Auth to GCP | |
| uses: google-github-actions/auth@v2 | |
| with: | |
| credentials_json: ${{ secrets.GCP_SA_KEY }} | |
| - name: Deploy to Cloud Run (force new revision) | |
| env: | |
| REGION: asia-east1 | |
| SERVICE_NAME: buck2hub-mono | |
| run: | | |
| set -euo pipefail | |
| IMAGE=$(gcloud run services describe $SERVICE_NAME \ | |
| --project "$GCP_PROJECT_ID" \ | |
| --region "$REGION" \ | |
| --format="value(spec.template.spec.containers[0].image)") | |
| echo "Current image: $IMAGE" | |
| gcloud run deploy $SERVICE_NAME \ | |
| --image "$IMAGE" \ | |
| --region "$REGION" \ | |
| --project "$GCP_PROJECT_ID" \ | |
| --quiet |