Build and Push Capacitor (Atlan fork) #9
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: Build and Push Capacitor (Atlan fork) | |
| on: | |
| push: | |
| branches: | |
| - atlan/main | |
| - atlan/beta | |
| paths: | |
| - "**" | |
| - "!**.md" | |
| - "!images/**" | |
| - "!**.png" | |
| workflow_dispatch: | |
| inputs: | |
| tag: | |
| description: "Image tag override (leave empty for auto SHA-based tag)" | |
| required: false | |
| env: | |
| REGISTRY: ghcr.io | |
| VITE_BASE_PATH: /api/flux-observability/ | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| arch: [amd64, arm64] | |
| include: | |
| - arch: amd64 | |
| runner: ubuntu-latest | |
| platform: linux/amd64 | |
| - arch: arm64 | |
| runner: ubuntu-latest | |
| platform: linux/arm64 | |
| runs-on: ${{ matrix.runner }} | |
| outputs: | |
| version: ${{ steps.get_version.outputs.version }} | |
| branch: ${{ steps.get_lowercase_branch.outputs.lowercase_branch }} | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Get branch name | |
| run: echo "branch=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT | |
| id: get_branch | |
| - name: Get version tag | |
| run: echo "version=$(echo $(git rev-parse HEAD | cut -c1-7))abcd" >> $GITHUB_OUTPUT | |
| id: get_version | |
| - name: Lowercase branch name | |
| run: | | |
| raw="${{ steps.get_branch.outputs.branch }}" | |
| # atlan/beta -> atlan-beta, atlan/main -> atlan-main | |
| normalized=$(echo "$raw" | tr '/' '-' | tr '[:upper:]' '[:lower:]') | |
| echo "lowercase_branch=$normalized" >> $GITHUB_OUTPUT | |
| id: get_lowercase_branch | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Log in to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.ORG_PAT_GITHUB }} | |
| - name: Build and push | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: . | |
| file: docker/Dockerfile.atlan | |
| platforms: ${{ matrix.platform }} | |
| push: true | |
| build-args: | | |
| VITE_BASE_PATH=${{ env.VITE_BASE_PATH }} | |
| tags: | | |
| ${{ env.REGISTRY }}/atlanhq/${{ github.event.repository.name }}-${{ steps.get_lowercase_branch.outputs.lowercase_branch }}:${{ steps.get_version.outputs.version }}-${{ matrix.arch }} | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| create-manifest: | |
| needs: build | |
| env: | |
| version: ${{ needs.build.outputs.version }} | |
| branch: ${{ needs.build.outputs.branch }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Log in to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.ORG_PAT_GITHUB }} | |
| - name: Create and Push Manifest List | |
| run: | | |
| docker buildx imagetools create --tag ghcr.io/atlanhq/${{ github.event.repository.name }}-${{ env.branch }}:latest \ | |
| ghcr.io/atlanhq/${{ github.event.repository.name }}-${{ env.branch }}:${{ env.version }}-amd64 \ | |
| ghcr.io/atlanhq/${{ github.event.repository.name }}-${{ env.branch }}:${{ env.version }}-arm64 | |
| docker buildx imagetools create --tag ghcr.io/atlanhq/${{ github.event.repository.name }}-${{ env.branch }}:${{ env.version }} \ | |
| ghcr.io/atlanhq/${{ github.event.repository.name }}-${{ env.branch }}:${{ env.version }}-amd64 \ | |
| ghcr.io/atlanhq/${{ github.event.repository.name }}-${{ env.branch }}:${{ env.version }}-arm64 | |
| - name: Check Image Manifest | |
| run: | | |
| docker buildx imagetools inspect --raw ghcr.io/atlanhq/${{ github.event.repository.name }}-${{ env.branch }}:${{ env.version }} |