Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ on:
description: Exact approved release-manifest.json SHA-256
required: true
type: string
immutable_releases_verified:
description: Release approver verified enabled=true and enforced_by_owner=true via the admin API
required: true
type: boolean

permissions: {}

Expand All @@ -44,6 +48,11 @@ jobs:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Require authorized immutable-release preflight
env:
IMMUTABLE_RELEASES_VERIFIED: ${{ inputs.immutable_releases_verified }}
run: |
test "$IMMUTABLE_RELEASES_VERIFIED" = true
- name: Verify dispatch and candidate build identity
env:
GH_TOKEN: ${{ github.token }}
Expand Down
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,15 @@ the package, and publishes the package, `SHA256SUMS`, and
just check
just dist
just sigil-check
sigil plugin install codec@1.1.1
sigil plugin install codec@1.1.2
sigil run examples/visible.lua
```

Version 1.1.1 is the first keyless-provenance release. Sigil verifies and pins
its exact repository, workflow, source commit, protected environment, package,
manifest, and public transparency proof before installation or evaluation.
Earlier releases remain historical bootstrap-digest evidence and are never
promoted in place.
Version 1.1.2 is the first accepted keyless-provenance release. Sigil verifies
and pins its exact repository, workflow, source commit, protected environment,
package, manifest, and public transparency proof before installation or
evaluation.
Version 1.1.1 was published while GitHub release immutability was disabled and
is permanently burned and emergency-denied; its tag and assets are preserved,
never replaced or deleted. Earlier releases remain historical bootstrap-digest
evidence and are never promoted in place.
2 changes: 1 addition & 1 deletion plugin.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
schema_version = 1
name = "codec"
version = "1.1.1"
version = "1.1.2"
description = "capability-free reference codec for Sigil plugins"
license = "MIT"

Expand Down