-
Notifications
You must be signed in to change notification settings - Fork 1
65 lines (55 loc) · 1.53 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
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
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Release new package
on:
push:
branches:
- master
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
- name: Install dependencies
run: npm install
- name: Configure Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "hyp3r00t"
- name: Auto-increment version and tag
id: versioning
run: |
# Increment the version and create a new tag
NEW_VERSION=$(npm version patch -m "Release version %s")
echo "New version: $NEW_VERSION"
# Output the new tag
echo "new_tag=$NEW_VERSION" >> $GITHUB_ENV
- name: Push changes
run: |
git push origin HEAD
git push origin ${{ env.new_tag }}
- name: Package VSCode extension
run: |
npm install -g vsce
vsce package
- name: Create Release
id: create_release
uses: ncipollo/release-action@v1
with:
tag: ${{ env.new_tag }}
name: Release ${{ env.new_tag }}
artifacts: ./*.vsix
draft: false
prerelease: false
- name: Publish to VSCode Marketplace
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
run: |
vsce publish -p $VSCE_TOKEN