@invisibleloop/pulse 0.1.35 → 0.1.36
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.
|
@@ -8,10 +8,12 @@ jobs:
|
|
|
8
8
|
release:
|
|
9
9
|
runs-on: ubuntu-latest
|
|
10
10
|
permissions:
|
|
11
|
-
contents:
|
|
11
|
+
contents: write
|
|
12
12
|
id-token: write
|
|
13
13
|
steps:
|
|
14
14
|
- uses: actions/checkout@v4
|
|
15
|
+
with:
|
|
16
|
+
token: ${{ secrets.RELEASE_PAT }}
|
|
15
17
|
|
|
16
18
|
- uses: actions/setup-node@v4
|
|
17
19
|
with:
|
|
@@ -31,6 +33,11 @@ jobs:
|
|
|
31
33
|
while npm view @invisibleloop/pulse@$VERSION version 2>/dev/null | grep -q .; do
|
|
32
34
|
VERSION=$(node -e "const [a,b,c]='$VERSION'.split('.').map(Number);console.log(a+'.'+b+'.'+(c+1))")
|
|
33
35
|
done
|
|
34
|
-
npm version $VERSION --no-git-tag-version
|
|
36
|
+
npm version $VERSION --no-git-tag-version --allow-same-version
|
|
35
37
|
echo "$VERSION" > public/.pulse-ui-version
|
|
38
|
+
git config user.name "github-actions[bot]"
|
|
39
|
+
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
40
|
+
git add package.json package-lock.json public/.pulse-ui-version
|
|
41
|
+
git commit -m "chore: release $VERSION [skip ci]" || true
|
|
42
|
+
git push
|
|
36
43
|
npm publish --provenance --access public
|
package/package.json
CHANGED
package/public/.pulse-ui-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.36
|