fix(release): audit untagged companion packages

This commit is contained in:
NimBold
2026-08-09 05:24:04 +03:30
parent 6a9b2bc099
commit 67828eea92
3 changed files with 37 additions and 3 deletions
+5 -1
View File
@@ -51,8 +51,12 @@ jobs:
- name: Verify non-publishing package version
if: github.event_name == 'workflow_dispatch' && !inputs.publish_release
run: node scripts/verify-release-version.js --allow-untagged
- name: Verify Companion release identity
- name: Verify tagged Companion release identity
if: github.event_name == 'push' || inputs.publish_release
run: node scripts/verify-companion-release.js
- name: Verify non-publishing Companion package metadata
if: github.event_name == 'workflow_dispatch' && !inputs.publish_release
run: node scripts/verify-companion-release.js --allow-untagged
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}