Skip to content

Commit 1bb8614

Browse files
committed
feat: correct pipes
1 parent e4f181a commit 1bb8614

File tree

5 files changed

+8159
-2432
lines changed

5 files changed

+8159
-2432
lines changed

.github/workflows/publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
- name: Publish to VSCode Extension Marketplace
2525
uses: lannonbr/[email protected]
2626
with:
27-
args: "publish -p $PUBLISHER_TOKEN"
27+
args: "publish -p $VSCE_PAT"
2828
env:
29-
PUBLISHER_TOKEN: ${{ secrets.PUBLISHER_TOKEN }}
29+
PUBLISHER_TOKEN: ${{ secrets.VSCE_PAT }}

.github/workflows/release.yml

+6-34
Original file line numberDiff line numberDiff line change
@@ -11,45 +11,17 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v2
1515

1616
- name: Setup Node.js
17-
uses: actions/setup-node@v3
17+
uses: actions/setup-node@v1
1818
with:
19-
node-version: 18
19+
node-version: 16
2020

2121
- name: Install dependencies
2222
run: npm install
2323

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
4525
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

Comments
 (0)