forjar 1.26.0

Rust-native Infrastructure as Code — bare-metal first, BLAKE3 state, provenance tracing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
# Per-repo release workflow — tagged releases only
# Spec: docs/specifications/sovereign-stack-protected-branch-strategy.md
#
# Flow: tag push → clean-room gate → package verify → trusted publish → GitHub Release
#       → cross-compiled binaries (4 Linux + 2 macOS targets) → SHA256SUMS
#       → distribution artifacts (installer, homebrew, nix, deb, rpm)
#
# Tag formats:
#   v1.0.0              — single-crate repos
#   v-<crate>-1.0.0     — workspace repos (e.g. v-apr-cli-0.4.0)
#
# IMPORTANT: Tags must be pushed with a PAT or deploy key (not GITHUB_TOKEN),
# otherwise this workflow will not trigger (GitHub anti-recursion measure).

name: Release

on:
  push:
    tags: ['v*']
  workflow_dispatch:
    inputs:
      tag:
        description: 'Tag to release (e.g., v1.2.0)'
        required: true

env:
  RELEASE_TAG: ${{ github.event.inputs.tag || github.ref_name }}

permissions:
  contents: write    # create GitHub Release + upload assets
  # id-token: write — removed; crates.io publish handled out-of-band (not via OIDC)

# One release at a time per repo
concurrency:
  group: release-${{ github.repository }}
  cancel-in-progress: false

jobs:
  # ── Verify: tag-version match + package tarball ─────────
  verify:
    runs-on: [self-hosted, clean-room]
    outputs:
      crate_name: ${{ steps.parse.outputs.crate_name }}
      version: ${{ steps.parse.outputs.version }}
      has_binaries: ${{ steps.bincheck.outputs.has_binaries }}
    steps:
      - name: Checkout
        uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1  # v7.0.1

      - name: Parse tag and verify version
        id: parse
        run: |
          TAG="${RELEASE_TAG}"

          # Parse tag format: v1.0.0 or v-cratename-1.0.0
          if [[ "$TAG" =~ ^v-([a-z][a-z0-9_-]*)-([0-9]+\..+)$ ]]; then
            CRATE_NAME="${BASH_REMATCH[1]}"
            TAG_VER="${BASH_REMATCH[2]}"
            echo "Workspace release: crate=$CRATE_NAME version=$TAG_VER"
          # Since #436 the repo is a workspace: .packages[0] is forjar-contracts
          # (0.31.2), which failed the v1.25.0/v1.25.1 tags as "Tag version !=
          # Cargo.toml version 0.31.2". A single-crate tag names the ROOT crate.
          elif [[ "$TAG" =~ ^v([0-9]+\..+)$ ]]; then
            CRATE_NAME=""
            TAG_VER="${BASH_REMATCH[1]}"
            echo "Single-crate release: version=$TAG_VER"
          else
            echo "::error::Tag '$TAG' does not match expected format (v1.0.0 or v-crate-1.0.0)"
            exit 1
          fi

          # Use cargo metadata for reliable version extraction
          if [ -n "$CRATE_NAME" ]; then
            CARGO_VER=$(cargo metadata --format-version 1 --no-deps \
              | jq -r ".packages[] | select(.name == \"$CRATE_NAME\") | .version")
            if [ -z "$CARGO_VER" ] || [ "$CARGO_VER" = "null" ]; then
              echo "::error::Crate '$CRATE_NAME' not found in workspace"
              exit 1
            fi
          else
            CARGO_VER=$(cargo metadata --format-version 1 --no-deps \
              | jq -r '.packages[] | select(.name == "forjar") | .version')
          fi

          if [ "$TAG_VER" != "$CARGO_VER" ]; then
            echo "::error::Tag version $TAG_VER != Cargo.toml version $CARGO_VER"
            exit 1
          fi

          echo "crate_name=$CRATE_NAME" >> "$GITHUB_OUTPUT"
          echo "version=$TAG_VER" >> "$GITHUB_OUTPUT"
          echo "Version verified: $TAG_VER"

      - name: Detect binary targets
        id: bincheck
        run: |
          HAS_BINS=$(cargo metadata --format-version 1 --no-deps \
            | jq '[.packages[].targets[] | select(.kind[] == "bin")] | length')
          echo "has_binaries=$( [ "$HAS_BINS" -gt 0 ] && echo true || echo false )" >> "$GITHUB_OUTPUT"
          echo "Binary targets found: $HAS_BINS"

      - name: Verify package tarball
        run: |
          # #423: the contract crates are workspace members and the root's path
          # dependencies until the release publishes them, so the tarball is
          # verified for the whole workspace (cargo >= 1.90 resolves the root
          # against the members it just packaged).
          cargo package --workspace

  # ── crates.io publish: handled out-of-band ─────────────
  # The OIDC trusted-publishing job was removed. Trusted Publishing is not
  # configured for paiml/forjar on crates.io, and the workflow needs a
  # corresponding registry-side trust policy that we don't currently maintain.
  # Until that's set up (https://crates.io/trusted-publishing), publish to
  # crates.io manually from a host with `~/.cargo/credentials.toml`:
  #
  #     git checkout v<x.y.z> && cargo publish --workspace
  #
  # (#423: `--workspace` publishes forjar-contracts-macros, forjar-contracts
  # and forjar in dependency order; the two contract crates must exist on
  # crates.io at the pinned version before `forjar` can.)
  #
  # This workflow now only builds binary release artifacts and creates the
  # GitHub Release.

  # ── Create GitHub Release ─────────────────────────────
  create-release:
    needs: verify
    runs-on: [self-hosted, clean-room]
    outputs:
      created: ${{ steps.create.outputs.created }}
    steps:
      - name: Create or update GitHub Release
        id: create
        env:
          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        run: |
          # Idempotent: create if missing, otherwise leave existing release
          # (and its hand-written notes) intact so re-runs don't clobber them.
          if gh release view "$RELEASE_TAG" --repo "${{ github.repository }}" >/dev/null 2>&1; then
            echo "Release $RELEASE_TAG already exists — leaving notes intact, downstream jobs will upload assets."
            echo "created=false" >> "$GITHUB_OUTPUT"
          else
            # PMAT-166: born a PRERELEASE. The clean-room verify above is the
            # hard gate for the artifact; promotion to a full release is the
            # operator's step after the published crate passes the dogfood
            # arm (`make dogfood-published VERSION=`), never this workflow's.
            # Born a DRAFT so no consumer sees a half-uploaded asset set
            # (the field's pattern: cargo-dist and GoReleaser build into a
            # draft); the publish-release job un-drafts once every asset job
            # has finished. It stays a PRERELEASE after that.
            gh release create "$RELEASE_TAG" \
              --title "$RELEASE_TAG" \
              --generate-notes \
              --verify-tag \
              --draft \
              --prerelease \
              --repo "${{ github.repository }}"
            echo "created=true" >> "$GITHUB_OUTPUT"
          fi

      - name: Assert the release this run created is a draft prerelease
        env:
          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        run: |
          # release-check (PMAT-166): what this run created must be exactly a
          # draft prerelease at this point — anything else means the create
          # step was bypassed or a producer raced it. A release that existed
          # before this run (re-run of an old tag) is reported, never touched.
          state="$(gh release view "$RELEASE_TAG" --repo "${{ github.repository }}" --json isPrerelease,isDraft --jq '"prerelease=\(.isPrerelease) draft=\(.isDraft)"')"
          echo "release $RELEASE_TAG: $state (created by this run: ${{ steps.create.outputs.created }})"
          if [ "${{ steps.create.outputs.created }}" = "true" ] && [ "$state" != "prerelease=true draft=true" ]; then
            echo "::error::release $RELEASE_TAG was created by this run but is not a draft prerelease: $state"
            exit 1
          fi

  # ── Build cross-compiled binaries (4 Linux + 2 macOS targets) ────
  build-binaries:
    needs: [verify, create-release]
    if: needs.verify.outputs.has_binaries == 'true'
    strategy:
      fail-fast: false
      matrix:
        include:
          - target: x86_64-unknown-linux-gnu
            runner: [self-hosted, clean-room]
          - target: x86_64-unknown-linux-musl
            runner: [self-hosted, clean-room]
          - target: aarch64-unknown-linux-gnu
            runner: [self-hosted, clean-room]
          - target: aarch64-unknown-linux-musl
            runner: [self-hosted, clean-room]
          - target: x86_64-apple-darwin
            runner: macos-latest
          - target: aarch64-apple-darwin
            runner: macos-latest
    runs-on: ${{ matrix.runner }}
    steps:
      - name: Checkout
        uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1  # v7.0.1

      - name: Install Rust toolchain (macOS)
        if: contains(matrix.target, 'darwin')
        run: |
          curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable
          echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
          # ADD THE TARGET. The Linux branch below already does this; macOS did
          # not, and it only mattered once `macos-latest` became ARM: with an
          # aarch64 host, aarch64-apple-darwin is NATIVE and builds fine, while
          # x86_64-apple-darwin has no std and dies with
          #   error[E0463]: can't find crate for `core`
          # That is what happened on v1.17.0 — 5 of 6 targets built, and the
          # release shipped without an x86_64 macOS binary while `create-release`
          # reported success and `checksums`/`dist-artifacts` silently skipped.
          #
          # NOT `|| true`. The Linux branch swallows failure that way, so a
          # missing target there would surface later as this same inscrutable
          # `core` error rather than at the point of cause. A target that cannot
          # be installed must fail here, loudly.
          export PATH="$HOME/.cargo/bin:$PATH"
          rustup target add "${{ matrix.target }}"
          rustup target list --installed | grep -qx "${{ matrix.target }}" || {
            echo "::error::rustup reported success but ${{ matrix.target }} is not installed"
            exit 1
          }

      - name: Install target prerequisites (Linux)
        if: contains(matrix.target, 'linux')
        run: |
          case "${{ matrix.target }}" in
            *-musl)
              if command -v apt-get &>/dev/null; then
                sudo apt-get update -qq
                sudo apt-get install -y -qq musl-tools >/dev/null
              fi
              rustup target add "${{ matrix.target }}" || true
              ;;
          esac
          case "${{ matrix.target }}" in
            aarch64-*)
              if ! command -v cross &>/dev/null; then
                cargo install cross --locked
              fi
              ;;
          esac

      - name: Discover binary names
        id: bins
        run: |
          BINS=$(cargo metadata --format-version 1 --no-deps \
            | jq -r '[.packages[].targets[] | select(.kind[] == "bin") | .name] | join(" ")')
          echo "names=$BINS" >> "$GITHUB_OUTPUT"
          echo "Binaries to build: $BINS"

      - name: Build release binaries
        run: |
          case "${{ matrix.target }}" in
            aarch64-unknown-linux-*)
              cross build --release --features vendored-openssl --target "${{ matrix.target }}"
              ;;
            *)
              cargo build --release --features vendored-openssl --target "${{ matrix.target }}"
              ;;
          esac

      - name: Package binaries
        run: |
          VERSION="${{ needs.verify.outputs.version }}"
          TARGET="${{ matrix.target }}"
          STAGING="${RUNNER_TEMP}/release-staging"
          mkdir -p "$STAGING"

          for BIN in ${{ steps.bins.outputs.names }}; do
            ARCHIVE="${BIN}-${VERSION}-${TARGET}.tar.gz"
            tar -czf "${STAGING}/${ARCHIVE}" \
              -C "target/${TARGET}/release" "$BIN"
            echo "Packaged: $ARCHIVE"
          done

      - name: Upload artifacts
        uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a  # v7.0.1
        with:
          name: binaries-${{ matrix.target }}
          path: ${{ runner.temp }}/release-staging/*.tar.gz
          retention-days: 5

  # ── Generate checksums and upload to GitHub Release ─────
  checksums:
    needs: [verify, create-release, build-binaries]
    if: needs.verify.outputs.has_binaries == 'true'
    runs-on: [self-hosted, clean-room]
    steps:
      # THE STAGING DIR IS A FIXED PATH ON A RUNNER THAT IS NOT EPHEMERAL.
      #
      # `download-artifact` writes into /tmp/release-assets and does NOT clear
      # it first. On a GitHub-hosted runner /tmp is fresh every job so that is
      # free; these runners are self-hosted and /tmp persists. The steps below
      # then glob `*.tar.gz` — so whatever the PREVIOUS release left behind is
      # swept into this one's checksums and uploaded to this one's tag.
      #
      # Measured on v1.18.0: four `forjar-1.17.0-*.tar.gz` assets attached to
      # the v1.18.0 release, and SHA256SUMS carrying 10 lines instead of 6 —
      # four of them for a version this release is not.
      #
      # Same family as the fleet's standing rule that a self-hosted workspace IS
      # a cache: any fixed path on these runners holds the last job's output
      # until something removes it.
      - name: Clear the staging directory
        run: rm -rf /tmp/release-assets && mkdir -p /tmp/release-assets

      - name: Download all binary artifacts
        uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c  # v8.0.1
        with:
          pattern: binaries-*
          merge-multiple: true
          path: /tmp/release-assets

      - name: Refuse to publish anything that is not this release
        working-directory: /tmp/release-assets
        run: |
          set -euo pipefail
          ver="${RELEASE_TAG#v}"
          stray=0
          for f in *.tar.gz; do
            case "$f" in
              forjar-"$ver"-*) ;;
              *) echo "::error::staging holds $f, which is not $RELEASE_TAG"; stray=1 ;;
            esac
          done
          # A CLEAN DIRECTORY IS NOT PROOF THE CLEAR WORKED — an empty staging
          # dir would also pass a "no strays" test while publishing nothing. So
          # assert the denominator too.
          n=$(ls -1 *.tar.gz 2>/dev/null | wc -l)
          echo "staging holds $n archive(s) for $RELEASE_TAG"
          [ "$n" -gt 0 ] || { echo "::error::no archives staged — nothing to publish"; exit 1; }
          [ "$stray" -eq 0 ] || exit 1

      - name: Generate SHA256SUMS and per-asset sidecars
        working-directory: /tmp/release-assets
        run: |
          set -euo pipefail
          sha256sum *.tar.gz > SHA256SUMS
          # Per-asset `.sha256` as well, because binary-release.yml produces
          # them and install.sh falls back to them when SHA256SUMS is missing.
          # Two producers writing to one release with different conventions is
          # how v1.18.0 ended up with sidecars for its Linux assets and none for
          # its macOS ones.
          for f in *.tar.gz; do sha256sum "$f" > "$f.sha256"; done
          echo "=== SHA256SUMS ==="
          cat SHA256SUMS

      - name: Upload to GitHub Release
        env:
          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        working-directory: /tmp/release-assets
        run: |
          gh release upload "$RELEASE_TAG" \
            *.tar.gz *.tar.gz.sha256 SHA256SUMS \
            --repo "${{ github.repository }}" \
            --clobber

  # ── Generate distribution artifacts (installer, homebrew, nix, deb, rpm) ──
  dist-artifacts:
    needs: [verify, checksums]
    if: needs.verify.outputs.has_binaries == 'true'
    runs-on: [self-hosted, clean-room]
    steps:
      - name: Checkout
        uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1  # v7.0.1

      - name: Generate distribution artifacts
        run: |
          # `dist --all` embeds real checksums into the homebrew formula and the
          # nix flake, so it REQUIRES the tag (placeholders are never emitted);
          # the v1.25.1 backfill failed here without it.
          cargo run --release -- dist \
            -f dist-forjar.yaml \
            --all \
            --version "$RELEASE_TAG" \
            --output-dir /tmp/dist-output

      - name: Upload installer to GitHub Release
        env:
          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        run: |
          gh release upload "$RELEASE_TAG" \
            /tmp/dist-output/install.sh \
            --repo "${{ github.repository }}" \
            --clobber

      - name: Upload dist artifacts
        uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a  # v7.0.1
        with:
          name: dist-artifacts
          path: /tmp/dist-output/
          retention-days: 30

  # ── Publish Homebrew formula to tap ──────────────────────
  homebrew:
    needs: [verify, dist-artifacts]
    if: needs.verify.outputs.has_binaries == 'true'
    runs-on: [self-hosted, clean-room]
    steps:
      - name: Checkout
        uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1  # v7.0.1

      - name: Download dist artifacts
        uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c  # v8.0.1
        with:
          name: dist-artifacts
          path: /tmp/dist-output

      - name: Download release checksums
        env:
          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        run: |
          gh release download "$RELEASE_TAG" \
            --pattern "SHA256SUMS" \
            --dir /tmp/checksums \
            --repo "${{ github.repository }}"

      - name: Patch Homebrew formula with real checksums and version
        run: |
          VERSION="${{ needs.verify.outputs.version }}"
          FORMULA="/tmp/dist-output/homebrew.rb"

          # Replace VERSION placeholder
          sed -i "s/version \"VERSION\"/version \"${VERSION}\"/" "$FORMULA"

          # Replace PLACEHOLDER_CHECKSUM for each target
          for TARGET_ASSET in \
            "forjar-${VERSION}-x86_64-unknown-linux-gnu.tar.gz" \
            "forjar-${VERSION}-aarch64-unknown-linux-gnu.tar.gz" \
            "forjar-${VERSION}-x86_64-apple-darwin.tar.gz" \
            "forjar-${VERSION}-aarch64-apple-darwin.tar.gz"; do
            CHECKSUM=$(grep "$TARGET_ASSET" /tmp/checksums/SHA256SUMS | awk '{print $1}' || echo "")
            if [ -n "$CHECKSUM" ]; then
              # Replace first occurrence of PLACEHOLDER_CHECKSUM
              sed -i "0,/PLACEHOLDER_CHECKSUM/s/PLACEHOLDER_CHECKSUM/${CHECKSUM}/" "$FORMULA"
            fi
          done

          echo "=== Patched formula ==="
          cat "$FORMULA"

      - name: Publish to Homebrew tap
        env:
          GH_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }}
        run: |
          VERSION="${{ needs.verify.outputs.version }}"
          FORMULA="/tmp/dist-output/homebrew.rb"

          # Clone the tap repo
          git clone "https://x-access-token:${GH_TOKEN}@github.com/paiml/homebrew-tap.git" /tmp/tap
          cp "$FORMULA" /tmp/tap/Formula/forjar.rb

          cd /tmp/tap
          git config user.name "github-actions[bot]"
          git config user.email "github-actions[bot]@users.noreply.github.com"
          git add Formula/forjar.rb
          git commit -m "forjar ${VERSION}" || echo "No changes to commit"
          git push

  # ── Publish: un-draft once every asset job has finished ───────
  publish-release:
    needs: [verify, create-release, build-binaries, checksums, dist-artifacts]
    if: >-
      always() &&
      needs.verify.result == 'success' &&
      needs.create-release.result == 'success' &&
      !contains(needs.*.result, 'failure') &&
      !contains(needs.*.result, 'cancelled')
    runs-on: [self-hosted, clean-room]
    steps:
      - name: Publish the prerelease
        env:
          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        run: |
          # Only a release this run created is un-drafted here; an existing
          # release keeps whatever state the operator gave it (PMAT-166).
          if [ "${{ needs.create-release.outputs.created }}" = "true" ]; then
            gh release edit "$RELEASE_TAG" --draft=false --prerelease --repo "${{ github.repository }}"
          fi
          state="$(gh release view "$RELEASE_TAG" --repo "${{ github.repository }}" --json isPrerelease,isDraft --jq '"prerelease=\(.isPrerelease) draft=\(.isDraft)"')"
          echo "release $RELEASE_TAG: $state"
          if [ "${{ needs.create-release.outputs.created }}" = "true" ] && [ "$state" != "prerelease=true draft=false" ]; then
            echo "::error::release $RELEASE_TAG is not a published prerelease after the asset jobs: $state"
            exit 1
          fi
          echo "Promotion to a full release is the operator's step after 'make dogfood-published VERSION=' passes."