khal-os 1.260326.3 → 1.260326.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -150,7 +150,6 @@ jobs:
|
|
|
150
150
|
- name: Publish to npm
|
|
151
151
|
env:
|
|
152
152
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
153
|
-
NPM_CONFIG_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
154
153
|
HUSKY: "0"
|
|
155
154
|
run: |
|
|
156
155
|
if [ -z "$NPM_TOKEN" ]; then
|
|
@@ -158,4 +157,5 @@ jobs:
|
|
|
158
157
|
exit 0
|
|
159
158
|
fi
|
|
160
159
|
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
|
|
161
|
-
|
|
160
|
+
# Use pnpm publish — it resolves workspace:* automatically
|
|
161
|
+
pnpm publish --access public --tag ${{ steps.context.outputs.npm_tag }} --no-git-checks || echo "Publish failed — version may already exist"
|