Release (Beta) #4
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 (Beta) | |
| on: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: release-beta | |
| cancel-in-progress: false | |
| jobs: | |
| preflight: | |
| name: Preflight | |
| runs-on: ubuntu-latest | |
| outputs: | |
| version: ${{ steps.version.outputs.version }} | |
| steps: | |
| - name: Setup Node.js | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 | |
| with: | |
| node-version: 24 | |
| registry-url: https://registry.npmjs.org | |
| - name: Compute next beta version | |
| id: version | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| BASE="2.0.0" | |
| LATEST=$(npm view "@keygraph/shannon" dist-tags.beta 2>/dev/null || echo "") | |
| if [[ "$LATEST" == "$BASE-beta."* ]]; then | |
| # Same base version — increment the beta counter (e.g. 2.0.0-beta.2 -> 2.0.0-beta.3) | |
| N=$(echo "$LATEST" | grep -oE 'beta\.([0-9]+)' | grep -oE '[0-9]+') | |
| NEXT=$((N + 1)) | |
| echo "version=$BASE-beta.$NEXT" >> "$GITHUB_OUTPUT" | |
| else | |
| # No prior beta, or a different base (e.g. last beta was 1.0.0-beta.N) — start over. | |
| echo "version=$BASE-beta.1" >> "$GITHUB_OUTPUT" | |
| fi | |
| - name: Print version | |
| run: 'echo "Next beta version: ${{ steps.version.outputs.version }}"' | |
| build-docker: | |
| name: Build Docker (${{ matrix.platform }}) | |
| needs: preflight | |
| permissions: | |
| contents: read | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| include: | |
| - platform: linux/amd64 | |
| runner: ubuntu-latest | |
| - platform: linux/arm64 | |
| runner: ubuntu-24.04-arm | |
| runs-on: ${{ matrix.runner }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0 | |
| - name: Log in to Docker Hub | |
| uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Build and push by digest | |
| id: build | |
| uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7.0.0 | |
| with: | |
| context: . | |
| platforms: ${{ matrix.platform }} | |
| provenance: mode=max | |
| sbom: true | |
| outputs: type=image,name=keygraph/shannon,push-by-digest=true,name-canonical=true,push=true | |
| - name: Export digest | |
| run: | | |
| mkdir -p /tmp/digests | |
| digest="${{ steps.build.outputs.digest }}" | |
| touch "/tmp/digests/${digest#sha256:}" | |
| - name: Upload digest | |
| uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 | |
| with: | |
| name: digests-${{ matrix.platform == 'linux/amd64' && 'amd64' || 'arm64' }} | |
| path: /tmp/digests/* | |
| if-no-files-found: error | |
| retention-days: 1 | |
| merge-docker: | |
| name: Push Docker manifests | |
| needs: [preflight, build-docker] | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| outputs: | |
| digest: ${{ steps.inspect.outputs.digest }} | |
| steps: | |
| - name: Download digests | |
| uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 | |
| with: | |
| path: /tmp/digests | |
| pattern: digests-* | |
| merge-multiple: true | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0 | |
| - name: Log in to Docker Hub | |
| uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Create manifest list and push | |
| working-directory: /tmp/digests | |
| run: | | |
| docker buildx imagetools create \ | |
| --tag "keygraph/shannon:${{ needs.preflight.outputs.version }}" \ | |
| $(printf 'keygraph/shannon@sha256:%s ' *) | |
| - name: Inspect image | |
| id: inspect | |
| run: | | |
| docker buildx imagetools inspect "keygraph/shannon:${{ needs.preflight.outputs.version }}" | |
| DIGEST="sha256:$(docker buildx imagetools inspect --raw "keygraph/shannon:${{ needs.preflight.outputs.version }}" | sha256sum | cut -d' ' -f1)" | |
| echo "digest=$DIGEST" >> "$GITHUB_OUTPUT" | |
| - name: Install cosign | |
| uses: sigstore/cosign-installer@ba7bc0a3fef59531c69a25acd34668d6d3fe6f22 # v4.1.0 | |
| - name: Sign Docker image | |
| run: cosign sign --yes "keygraph/shannon@${{ steps.inspect.outputs.digest }}" | |
| - name: Verify Docker image signature | |
| run: | | |
| sleep 10 | |
| cosign verify \ | |
| --certificate-oidc-issuer https://token.actions.githubusercontent.com \ | |
| --certificate-identity https://github.com/${{ github.repository }}/.github/workflows/release-beta.yml@${{ github.ref }} \ | |
| "keygraph/shannon@${{ steps.inspect.outputs.digest }}" | |
| publish-npm: | |
| name: Publish npm (beta) | |
| needs: [preflight, merge-docker] | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0 | |
| - name: Configure npm registry | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 | |
| with: | |
| node-version: 24 | |
| registry-url: https://registry.npmjs.org | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Set CLI package version | |
| run: cd apps/cli && npm version "${{ needs.preflight.outputs.version }}" --no-git-tag-version --allow-same-version | |
| - name: Sync lockfile with bumped version | |
| run: pnpm install --lockfile-only | |
| - name: Build CLI | |
| run: pnpm --filter @keygraph/shannon run build | |
| - name: Publish npm package | |
| working-directory: apps/cli | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| run: | | |
| if npm view "@keygraph/shannon@${{ needs.preflight.outputs.version }}" version 2>/dev/null; then | |
| echo "Version already published, skipping" | |
| else | |
| pnpm publish --access public --no-git-checks --tag beta | |
| fi |