diff --git a/.beads/issues.jsonl b/.beads/issues.jsonl index ee91846..8dda4e1 100644 --- a/.beads/issues.jsonl +++ b/.beads/issues.jsonl @@ -1,3 +1,4 @@ +{"_type":"issue","id":"molock-37k","title":"[GH#42-fix] Make release workflow resilient to existing releases","description":"Technical Scope: Add --clobber flag to gh release create in release.yml to allow updating existing releases.","status":"open","priority":2,"issue_type":"task","owner":"fernando.ike@pws.cloud","created_at":"2026-05-23T23:12:15Z","created_by":"Fernando Ike","updated_at":"2026-05-23T23:12:15Z","dependency_count":0,"dependent_count":0,"comment_count":0} {"_type":"issue","id":"molock-d28","title":"[GH#42] Release v0.2.1","description":"Release tracking for version 0.2.1. Ref: https://github.com/fike/molock/issues/42","status":"open","priority":2,"issue_type":"task","owner":"fernando.ike@pws.cloud","created_at":"2026-05-23T17:45:42Z","created_by":"Fernando Ike","updated_at":"2026-05-23T17:45:42Z","dependency_count":0,"dependent_count":0,"comment_count":0} {"_type":"issue","id":"molock-fl0","title":"[GH#40-fix] Fix SLSA Verification failure on main","description":"Product Definition: https://github.com/fike/molock/issues/39 (Related) \\n\\nTechnical Scope: Update release.yml to upload SLSA assets and ci.yml to be fault-tolerant when provenance is missing.","status":"closed","priority":2,"issue_type":"task","owner":"fernando.ike@pws.cloud","created_at":"2026-05-23T15:56:40Z","created_by":"Fernando Ike","updated_at":"2026-05-23T17:25:36Z","started_at":"2026-05-23T15:57:07Z","closed_at":"2026-05-23T17:25:36Z","close_reason":"Closed","dependency_count":0,"dependent_count":0,"comment_count":0} {"_type":"issue","id":"molock-omz","title":"[GH#39] Add Multi-architecture Docker Image Support (ARM64 and AMD64)","description":"Product Definition: https://github.com/fike/molock/issues/39 \\n\\nTechnical Scope: Update docker-publish.yml and Dockerfile to support linux/amd64 and linux/arm64 targets.","status":"open","priority":2,"issue_type":"task","assignee":"Fernando Ike","owner":"fernando.ike@pws.cloud","created_at":"2026-05-23T12:49:12Z","created_by":"Fernando Ike","updated_at":"2026-05-23T13:07:19Z","started_at":"2026-05-23T13:05:25Z","dependency_count":0,"dependent_count":0,"comment_count":0} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2ba4a77..446fb79 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -67,6 +67,7 @@ jobs: gh release create "${{ github.ref_name }}" \ --title "${{ github.ref_name }}" \ --generate-notes \ + --clobber \ release/*.tar.gz env: GH_TOKEN: ${{ github.token }}