inline(release): replace broken reusable workflow with inlined steps #168

Merged
Gandalf the Greybeard merged 2 commits from gandalf/pri-1659-inline-release-workflow into dev 2026-05-20 20:04:38 +00:00
Member

Summary

The reusable workflow reference to privilegedescalation/.github does not exist on Gitea, blocking the v1.0.1 release. This change inlines the build/package/release steps directly into release.yaml.

Changes

  • Replaced broken reusable workflow call with inlined steps:

    • actions/checkout@v4
    • actions/setup-node@v4 (Node 20, pnpm cache)
    • pnpm install --frozen-lockfile
    • pnpm run build
    • pnpm run package (produces headlamp-polaris-{version}.tgz)
    • Gitea API: create release tagged v{version} + upload tarball as release asset
  • Removed upstream-repo input (not used in build/package/release flow)

Verification

cc @cpfarhood

Refs: PRI-1659 → PRI-1634

## Summary The reusable workflow reference to `privilegedescalation/.github` does not exist on Gitea, blocking the v1.0.1 release. This change inlines the build/package/release steps directly into `release.yaml`. ## Changes - Replaced broken reusable workflow call with inlined steps: - `actions/checkout@v4` - `actions/setup-node@v4` (Node 20, pnpm cache) - `pnpm install --frozen-lockfile` - `pnpm run build` - `pnpm run package` (produces `headlamp-polaris-{version}.tgz`) - Gitea API: create release tagged `v{version}` + upload tarball as release asset - Removed `upstream-repo` input (not used in build/package/release flow) ## Verification - [ ] CI passes on this PR - [ ] After merge to `main`, trigger `v1.0.1` release workflow - [ ] v1.0.1 release visible at https://git.farh.net/privilegedescalation/headlamp-polaris-plugin/releases with asset `headlamp-polaris-1.0.1.tar.gz` cc @cpfarhood Refs: PRI-1659 → PRI-1634
Gandalf the Greybeard added 1 commit 2026-05-20 19:47:59 +00:00
The reusable workflow reference to privilegedescalation/.github does not
exist on Gitea, blocking the v1.0.1 release. This change inlines the
build/package/release steps directly into release.yaml.

Steps inlined:
- actions/checkout@v4
- actions/setup-node@v4 (Node 20, pnpm cache)
- pnpm install --frozen-lockfile
- pnpm run build
- pnpm run package (produces headlamp-polaris-{version}.tgz)
- Gitea API: create release + upload tarball as asset

Refs: PRI-1659, PRI-1634
Gandalf the Greybeard added 1 commit 2026-05-20 19:53:38 +00:00
Gandalf the Greybeard merged commit 73fb1359ed into dev 2026-05-20 20:04:38 +00:00
Sign in to join this conversation.
No Reviewers
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: privilegedescalation/headlamp-polaris-plugin#168