fix(ci): use correct Dockerfile paths for gateway and supervisor #42
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: Publish Images | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| branches: | |
| - main | |
| - mvp | |
| - mvp-v2 | |
| workflow_dispatch: | |
| # Deny all permissions at workflow level; each job declares only what it needs | |
| permissions: {} | |
| env: | |
| REGISTRY: ghcr.io | |
| jobs: | |
| build-and-push: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 45 | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: jdx/mise-action@v2 | |
| - name: Add Rust targets | |
| run: | | |
| rustup target add x86_64-unknown-linux-gnu | |
| rustup target add aarch64-unknown-linux-gnu | |
| rustup target add x86_64-unknown-linux-musl | |
| rustup target add aarch64-unknown-linux-musl | |
| - name: Install cargo-zigbuild | |
| run: cargo install cargo-zigbuild | |
| - name: Cache Rust target and registry | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| shared-key: publish-binaries | |
| - name: Cross-compile gateway for amd64 and arm64 | |
| env: | |
| DOCKER_PLATFORM: linux/amd64,linux/arm64 | |
| run: tasks/scripts/stage-prebuilt-binaries.sh gateway | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0 | |
| - name: Log in to ghcr.io | |
| uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Extract Docker metadata | |
| id: meta | |
| uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0 | |
| continue-on-error: true | |
| with: | |
| images: ghcr.io/kagenti/openshell/gateway | |
| tags: | | |
| type=ref,event=tag | |
| type=sha,prefix={{branch}}-,enable=${{ github.ref_type != 'tag' }} | |
| type=raw,value=latest,enable=${{ (github.ref_type == 'tag' && startsWith(github.ref_name, 'v')) || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/main' || github.ref == 'refs/heads/mvp' || github.ref == 'refs/heads/mvp-v2' }} | |
| - name: Wait before retry | |
| if: steps.meta.outcome == 'failure' | |
| run: | | |
| echo "Metadata extraction failed, retrying in 15s..." | |
| sleep 15 | |
| - name: Retry Docker metadata | |
| id: meta_retry | |
| if: steps.meta.outcome == 'failure' | |
| uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0 | |
| with: | |
| images: ghcr.io/kagenti/openshell/gateway | |
| tags: | | |
| type=ref,event=tag | |
| type=sha,prefix={{branch}}-,enable=${{ github.ref_type != 'tag' }} | |
| type=raw,value=latest,enable=${{ (github.ref_type == 'tag' && startsWith(github.ref_name, 'v')) || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/main' || github.ref == 'refs/heads/mvp' || github.ref == 'refs/heads/mvp-v2' }} | |
| - name: Build and push gateway image | |
| uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0 | |
| with: | |
| context: . | |
| file: deploy/docker/Dockerfile.gateway | |
| push: true | |
| platforms: linux/amd64,linux/arm64 | |
| tags: ${{ steps.meta_retry.outputs.tags || steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta_retry.outputs.labels || steps.meta.outputs.labels }} | |
| cache-from: type=gha,scope=gateway | |
| cache-to: type=gha,scope=gateway,mode=max | |
| build-and-push-supervisor: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 45 | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: jdx/mise-action@v2 | |
| - name: Add Rust targets | |
| run: | | |
| rustup target add x86_64-unknown-linux-gnu | |
| rustup target add aarch64-unknown-linux-gnu | |
| rustup target add x86_64-unknown-linux-musl | |
| rustup target add aarch64-unknown-linux-musl | |
| - name: Install cargo-zigbuild | |
| run: cargo install cargo-zigbuild | |
| - name: Cache Rust target and registry | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| shared-key: publish-binaries | |
| - name: Cross-compile supervisor for amd64 and arm64 | |
| env: | |
| DOCKER_PLATFORM: linux/amd64,linux/arm64 | |
| run: tasks/scripts/stage-prebuilt-binaries.sh supervisor | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0 | |
| - name: Log in to ghcr.io | |
| uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Extract Docker metadata | |
| id: meta | |
| uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0 | |
| continue-on-error: true | |
| with: | |
| images: ghcr.io/kagenti/openshell/supervisor | |
| tags: | | |
| type=ref,event=tag | |
| type=sha,prefix={{branch}}-,enable=${{ github.ref_type != 'tag' }} | |
| type=raw,value=latest,enable=${{ (github.ref_type == 'tag' && startsWith(github.ref_name, 'v')) || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/main' || github.ref == 'refs/heads/mvp' || github.ref == 'refs/heads/mvp-v2' }} | |
| - name: Wait before retry | |
| if: steps.meta.outcome == 'failure' | |
| run: | | |
| echo "Metadata extraction failed, retrying in 15s..." | |
| sleep 15 | |
| - name: Retry Docker metadata | |
| id: meta_retry | |
| if: steps.meta.outcome == 'failure' | |
| uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0 | |
| with: | |
| images: ghcr.io/kagenti/openshell/supervisor | |
| tags: | | |
| type=ref,event=tag | |
| type=sha,prefix={{branch}}-,enable=${{ github.ref_type != 'tag' }} | |
| type=raw,value=latest,enable=${{ (github.ref_type == 'tag' && startsWith(github.ref_name, 'v')) || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/main' || github.ref == 'refs/heads/mvp' || github.ref == 'refs/heads/mvp-v2' }} | |
| - name: Build and push supervisor image | |
| uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0 | |
| with: | |
| context: . | |
| file: deploy/docker/Dockerfile.supervisor | |
| push: true | |
| platforms: linux/amd64,linux/arm64 | |
| tags: ${{ steps.meta_retry.outputs.tags || steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta_retry.outputs.labels || steps.meta.outputs.labels }} | |
| cache-from: type=gha,scope=supervisor | |
| cache-to: type=gha,scope=supervisor,mode=max |