testdriverai 7.2.57 → 7.2.58
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.
- package/.github/workflows/publish.yaml +59 -43
- package/CHANGELOG.md +10 -0
- package/package.json +1 -1
|
@@ -1,52 +1,68 @@
|
|
|
1
1
|
name: Publish
|
|
2
2
|
permissions:
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
contents: write
|
|
4
|
+
id-token: write # Required for OIDC
|
|
5
5
|
on:
|
|
6
6
|
push:
|
|
7
|
-
branches: [
|
|
7
|
+
branches: [main]
|
|
8
8
|
|
|
9
9
|
jobs:
|
|
10
10
|
publish:
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
|
-
|
|
12
|
+
|
|
13
13
|
steps:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
14
|
+
- uses: actions/checkout@v4
|
|
15
|
+
with:
|
|
16
|
+
fetch-depth: 0
|
|
17
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
18
|
+
|
|
19
|
+
- name: Setup Node.js
|
|
20
|
+
uses: actions/setup-node@v4
|
|
21
|
+
with:
|
|
22
|
+
node-version: "20"
|
|
23
|
+
registry-url: "https://registry.npmjs.org/"
|
|
24
|
+
|
|
25
|
+
- name: Configure Git
|
|
26
|
+
run: |
|
|
27
|
+
git config user.name "github-actions[bot]"
|
|
28
|
+
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
29
|
+
|
|
30
|
+
- name: Install dependencies
|
|
31
|
+
run: npm ci
|
|
32
|
+
|
|
33
|
+
- name: Bump version (patch)
|
|
34
|
+
run: npm version patch --no-git-tag-version
|
|
35
|
+
|
|
36
|
+
- name: Generate Changelog
|
|
37
|
+
run: |
|
|
38
|
+
npx conventional-changelog-cli -p angular -i CHANGELOG.md -s
|
|
39
|
+
git add CHANGELOG.md
|
|
40
|
+
|
|
41
|
+
- name: Commit and push version bump
|
|
42
|
+
run: |
|
|
43
|
+
git add package.json package-lock.json
|
|
44
|
+
VERSION=$(node -p "require('./package.json').version")
|
|
45
|
+
git commit -m "chore(release): ${VERSION}"
|
|
46
|
+
git tag "v${VERSION}"
|
|
47
|
+
git push origin main
|
|
48
|
+
git push origin "v${VERSION}"
|
|
49
|
+
echo "VERSION=${VERSION}" >> $GITHUB_ENV
|
|
50
|
+
|
|
51
|
+
- name: Create GitHub Release
|
|
52
|
+
uses: softprops/action-gh-release@v1
|
|
53
|
+
with:
|
|
54
|
+
tag_name: v${{ env.VERSION }}
|
|
55
|
+
generate_release_notes: true
|
|
56
|
+
prerelease: false
|
|
57
|
+
|
|
58
|
+
- name: Debug NPM Token
|
|
59
|
+
run: |
|
|
60
|
+
echo "NPM_TOKEN is set: ${{ secrets.NPM_TOKEN != '' }}"
|
|
61
|
+
echo "NPM_TOKEN first 4 chars: ${NPM_TOKEN:0:4}..."
|
|
62
|
+
env:
|
|
63
|
+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
64
|
+
|
|
65
|
+
- name: Publish to npm
|
|
66
|
+
run: npm publish --tag beta
|
|
67
|
+
env:
|
|
68
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
## [7.2.58](https://github.com/testdriverai/testdriverai/compare/v6.1.8...v7.2.58) (2026-01-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Reverts
|
|
5
|
+
|
|
6
|
+
* Revert "list dashcam version g" ([5037571](https://github.com/testdriverai/testdriverai/commit/5037571440c33f8966104874c542c6c57a809510))
|
|
7
|
+
* Revert "update discord invite" ([b5a9b99](https://github.com/testdriverai/testdriverai/commit/b5a9b9955cf2b0b07fd0ebeb6abf65f89cd3d5a8))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|