fix the issue with deploying OCI-based MCP servers (#123) #25
Workflow file for this run
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: Release | |
| on: | |
| push: | |
| tags: | |
| - "v*.*.*" | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: 'Version number' | |
| jobs: | |
| docker: | |
| strategy: | |
| matrix: | |
| image: | |
| - agentgateway | |
| - server | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: "go.mod" | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.9.x | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| with: | |
| platforms: linux/amd64,linux/arm64 | |
| version: v0.23.0 | |
| use: 'true' | |
| - name: 'Build Images' | |
| env: | |
| DOCKER_BUILD_ARGS: "--push --platform linux/amd64,linux/arm64" | |
| DOCKER_BUILDER: "docker buildx" | |
| DOCKER_REGISTRY: "ghcr.io" # prod for releases, local for dev | |
| run: | | |
| # if workflow_dispatch is used, use the version input | |
| if [ -n "${{ github.event.inputs.version }}" ]; then | |
| export VERSION=${{ github.event.inputs.version }} | |
| else | |
| export VERSION=$(echo "$GITHUB_REF" | cut -c12-) | |
| fi | |
| make docker-${{ matrix.image }} | |
| release: | |
| needs: | |
| - docker | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: "go.mod" | |
| - name: Build Release Artifacts | |
| env: | |
| DOCKER_REGISTRY: "ghcr.io" # prod for releases | |
| run: | | |
| # if workflow_dispatch is used, use the version input | |
| if [ -n "${{ github.event.inputs.version }}" ]; then | |
| export VERSION=${{ github.event.inputs.version }} | |
| else | |
| export VERSION=$(echo "$GITHUB_REF" | cut -c12-) | |
| fi | |
| make release-cli | |
| - name: Create GitHub Release | |
| uses: softprops/action-gh-release@v2 | |
| if: startsWith(github.ref, 'refs/tags/') | |
| with: | |
| generate_release_notes: true | |
| files: | | |
| bin/arctl-* | |