Release Please owns the version bump, changelog PR, and Git tag for Scrypath. The only publish path is the existing GitHub Actions workflow: Release Please creates vX.Y.Z, Actions checks out that tag, and mix hex.publish --yes runs from that tagged ref.

Automated Release Gate

Run the auth-free package gate before you merge a release PR or when you need the same checks outside CI:

mix verify.phase11

That command is the always-on CI gate for the release contract. It runs the package metadata test, the clean-consumer smoke test, the release-doc contract, docs with warnings as errors, release workflow checks, and mix hex.build --unpack.

Use this release-only credential check only when you are preparing an actual publish with a publisher-scoped Hex key:

HEX_API_KEY=... mix hex.publish --dry-run --yes

That command must stay out of the always-on CI gate.

After a real Hex publish, the release workflow now runs the live post-publish check automatically:

mix verify.release_publish X.Y.Z

That task polls Hex until the published version is visible, compiles the documented use Scrypath schema from a fresh throwaway app using {:scrypath, "~> X.Y.Z"}, and confirms https://hexdocs.pm/scrypath/X.Y.Z responds.

Minimum Secret Setup

Create this GitHub Actions secret before the first automated release:

  1. HEX_API_KEY - Hex.pm API key that can publish scrypath

The workflow uses GitHub's built-in GITHUB_TOKEN for Release Please. Keep HEX_API_KEY scoped to the publish workflows only. Do not expose it to the always-on CI job.

Local CI Reproduction

For a deterministic local reproduction of the always-on release contract gate, run the Docker smoke wrapper:

./scripts/verify_phase11_docker.sh

That gives you the same mix verify.phase11 path CI executes, without depending on your host Beam toolchain or a real Hex publish.

If you prefer act, keep it as a secondary option and pin a runner image that has a working Beam/OpenSSL stack for your host architecture. The Docker wrapper is the default because it is less brittle.

Ongoing Published Release Verification

The repository also includes .github/workflows/verify-published-release.yml for ongoing verification after the first public release.

  • It runs on a daily schedule and on manual workflow_dispatch.
  • It reads the latest published Scrypath version from https://hex.pm/api/packages/scrypath.
  • Before the first public release, it detects the Hex 404 and exits cleanly.
  • After Scrypath is published, it runs mix verify.release_publish X.Y.Z against the latest published version without attempting any publish or recovery action.

Treat failures in this workflow as operational regressions in the published package, Hex availability, or HexDocs availability.

Canonical Release Flow

  1. Confirm the repo state before merge:

    mix verify.phase11
    grep -n '@version\|@source_ref' mix.exs
    cat .release-please-manifest.json
    sed -n '1,80p' CHANGELOG.md
    
  2. Review the Release Please PR. The version in mix.exs, .release-please-manifest.json, and the top changelog entry should all describe the same vX.Y.Z release.

  3. Merge the Release Please PR to main. The existing .github/workflows/release-please.yml workflow is the only release path. When release_created == true, the publish-hex job checks out tag_name and runs mix hex.publish --yes. Before the real publish, that job also verifies mix.exs matches the Release Please version, runs mix verify.phase11, and runs mix hex.publish --dry-run --yes.

  4. After the workflow finishes, confirm the release artifacts:

    git fetch --tags origin
    git tag --sort=version:refname | tail -n 5
    gh run view --log
    

    The publish job now runs mix verify.release_publish X.Y.Z for the newly released version, so Hex package visibility, clean-consumer compile, and versioned HexDocs reachability are checked inside the workflow instead of by hand.

  5. If the workflow passes, treat the release contract as satisfied. Manual spot-checks are optional, not required.

Recovering Tag or Version Drift

Start by comparing the repo version sources and the pushed tags directly:

grep -n '@version\|@source_ref' mix.exs
cat .release-please-manifest.json
sed -n '1,80p' CHANGELOG.md
git fetch --tags origin
git tag --sort=version:refname | tail -n 10
  • If mix.exs, .release-please-manifest.json, and CHANGELOG.md disagree before publish, fix the release PR or rerun Release Please. Do not hand-create a new package tag.

  • If GitHub has the wrong vX.Y.Z tag or release but Hex does not have the package yet, delete the bad release state and rerun the existing workflow:

    gh release delete vX.Y.Z --yes
    git push origin :refs/tags/vX.Y.Z
    gh workflow run release-please.yml
    
  • If Hex already has X.Y.Z, treat the issue as a published artifact problem and follow the artifact-mismatch runbook below. Do not retag the same version behind Hex's back.

Recovering a Failed Publish

Use the same tagged release ref that Release Please created. Do not invent a second publish path or bump the version manually just because the publish step failed.

  1. Check out the release tag and rerun the local gate:

    git fetch --tags origin
    git checkout vX.Y.Z
    mix deps.get
    mix verify.phase11
    HEX_API_KEY=... mix hex.publish --dry-run --yes
    
  2. If the dry run fails, fix the packaging or docs issue on the release branch input, merge the correction, and let Release Please cut the next proper release PR.

  3. If the dry run passes and mix hex.info scrypath does not show X.Y.Z, rerun the existing checks from the same reviewed ref with the manual recovery workflow:

    • open .github/workflows/publish-hex.yml
    • set tag to the reviewed release tag or commit ref
    • set release_version to X.Y.Z

    That workflow reruns mix verify.phase11, mix hex.publish --dry-run --yes, mix hex.publish --yes, and mix verify.release_publish X.Y.Z from the explicit ref.

  4. After a successful publish, rerun:

    mix verify.release_publish X.Y.Z
    

    The same task is what the release workflow runs after mix hex.publish --yes.

Manual Recovery Workflow

Use .github/workflows/publish-hex.yml only for recovery or explicit republish from a reviewed tag/ref.

Inputs:

  • tag - reviewed release tag or commit ref to publish from
  • release_version - expected @version at that ref

The recovery workflow never depends on Release Please step outputs. It verifies the checked-out ref directly before publishing.

Recovering Published Artifact Mismatch

Use --replace only when Hex still allows replacing the published version and the correct fix is "same version, corrected artifact." Use --revert when the bad artifact should be withdrawn and replaced by a fresh release.

  1. Confirm the mismatch from the published artifact, local package contents, and docs path:

    mix verify.phase11
    mix hex.build --unpack
    mix hex.info scrypath
    curl -Ifs https://hexdocs.pm/scrypath/X.Y.Z
    
  2. Replace the same version only if the tag is correct and Hex still allows replacement for that release window:

    HEX_API_KEY=... mix hex.publish --dry-run --yes
    HEX_API_KEY=... mix hex.publish --replace --yes
    
  3. Revert and republish under a new Release Please cut when the tag or version itself is wrong, when the replace window is closed, or when you need a clean corrective release trail:

    HEX_API_KEY=... mix hex.publish --revert X.Y.Z
    

    After the revert, fix the repo state, let Release Please open the next versioned PR, merge it, and rerun the canonical release flow plus mix verify.release_publish X.Y.Z for the new release.