-
Notifications
You must be signed in to change notification settings - Fork 0
fix(ci): align publish workflow package scope #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,7 +16,7 @@ permissions: | |
| packages: write | ||
| jobs: | ||
| package: | ||
| uses: tinyland-inc/ci-templates/.github/workflows/js-bazel-package.yml@21e0093a7586931ee69d716387e00556c6da7738 | ||
| uses: tinyland-inc/ci-templates/.github/workflows/js-bazel-package.yml@0d88ad73c6884f4854624d3a2ec4b6ce41f5bea8 | ||
| with: | ||
| runner_mode: shared | ||
| shared_runner_labels_json: ${{ vars.PRIMARY_LINUX_RUNNER_LABELS_JSON }} | ||
|
|
@@ -33,7 +33,6 @@ jobs: | |
| bazel_targets: "//:pkg //:test" | ||
| package_dir: ./bazel-bin/pkg | ||
| npm_access: public | ||
| github_package_name: "@tummycrypt/tinyland-security" | ||
| github_package_name: "@tinyland-inc/tinyland-security" | ||
| dry_run: ${{ github.event_name == 'workflow_dispatch' && inputs.dry_run || false }} | ||
| secrets: | ||
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
| secrets: inherit | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Switching from an explicit |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Renaming
github_package_namefrom@tummycrypt/tinyland-securityto@tinyland-inc/tinyland-securitymeans the next publish will create a brand-new package entry in GitHub Packages under the@tinyland-incscope. Any downstream project currently depending on@tummycrypt/tinyland-securitywill silently stop receiving updates unless itspackage.jsonis updated. Consider publishing a final deprecation notice or stub release under the old scope pointing users to the new name.