Fix release workflow #2
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*' | |
| jobs: | |
| linting: | |
| name: Linting | |
| uses: ./.github/workflows/lint.yml | |
| tests: | |
| name: Tests | |
| uses: ./.github/workflows/test.yml | |
| release: | |
| name: Release Container | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - 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.GITHUB_TOKEN }} | |
| - name: Extract tag version | |
| id: tag | |
| run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT | |
| - name: Set repository owner lowercase | |
| id: repo_owner | |
| run: echo "OWNER=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_OUTPUT | |
| - name: Extract metadata | |
| id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: ghcr.io/${{ steps.repo_owner.outputs.OWNER }}/plotting-mcp | |
| tags: | | |
| type=ref,event=tag | |
| type=raw,value=latest,enable={{is_default_branch}} | |
| type=raw,value=${{ steps.tag.outputs.VERSION }} | |
| - name: Build and push container | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| - name: Install Cosign | |
| uses: sigstore/cosign-installer@398d4b0eeef1380460a10c8013a76f728fb906ac # v3.9.1 | |
| - name: Sign container image | |
| env: | |
| REGISTRY: ghcr.io/${{ steps.repo_owner.outputs.OWNER }}/plotting-mcp | |
| run: | | |
| TAG=$(echo "${{ steps.tag.outputs.VERSION }}" | sed 's/+/_/g') | |
| # Sign the tagged image | |
| cosign sign -y $REGISTRY:$TAG | |
| # Sign the latest tag if building from a tag | |
| if [[ "${{ github.ref }}" == refs/tags/* ]]; then | |
| cosign sign -y $REGISTRY:latest | |
| fi |