@@ -11,45 +11,17 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Checkout
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v2
15
15
16
16
- name : Setup Node.js
17
- uses : actions/setup-node@v3
17
+ uses : actions/setup-node@v1
18
18
with :
19
- node-version : 18
19
+ node-version : 16
20
20
21
21
- name : Install dependencies
22
22
run : npm install
23
23
24
- - name : Increment version and create release
25
- id : version
26
- run : |
27
- current_version=$(npm version patch)
28
- echo "new_version=$current_version" >> $GITHUB_ENV
29
-
30
- - name : Build the extension
31
- run : npm run compile
32
-
33
- - name : Package the extension
34
- run : |
35
- npm run build
36
- echo "Listing files in the directory to verify .vsix file is generated:"
37
- ls -lh
38
- ls -lh *.vsix || echo "No .vsix file found!"
39
-
40
- - name : Create GitHub Release
41
- if : success() && steps.package.outputs.vsix_file_exists == 'true'
42
- uses : softprops/action-gh-release@v1
43
- with :
44
- files : ' *.vsix'
24
+ - name : Run semantic-release
45
25
env :
46
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
47
-
48
- - name : Commit and push version update
49
- run : |
50
- git config user.name "github-actions[bot]"
51
- git config user.email "github-actions[bot]@users.noreply.github.com"
52
- git add package.json
53
- git commit -m "ci: bump version to ${{ env.new_version }}"
54
- git tag ${{ env.new_version }}
55
- git push origin main --tags
26
+ GITHUB_TOKEN : ${{ secrets.PERSONAL_GITHUB_TOKEN }}
27
+ run : npm run release
0 commit comments