Skip to content

Commit

Permalink
Revert "use vsce-action"
Browse files Browse the repository at this point in the history
This reverts commit 8473725.
  • Loading branch information
hanjoosten committed Jan 1, 2025
1 parent 794d289 commit c6bf631
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,28 @@ jobs:
- name: npm install
run: npm install

- uses: lannonbr/[email protected]
with:
args: "publish -p $VSCE_TOKEN"
- name: install vsce
run: npm i -g @vscode/vsce

- name: set git variables
run: |
git config user.name "$(git log -n 1 --pretty=format:%an)"
git config user.email "$(git log -n 1 --pretty=format:%ae)"
- name: git add
run: git add .

-
name: install esbuild
run: npm i --global esbuild

- name: bundle
run: npm run bundle

- name: publish vsce
run: "vsce publish patch -p $VSCE_TOKEN -m 'CI: bumps version to %s'"
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}

- name: git push
run: git push origin -u ${{ github.ref_name }} --tags

0 comments on commit c6bf631

Please sign in to comment.