Skip to content

Commit

Permalink
ci fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
HYP3R00T committed Jul 17, 2024
1 parent c625ebc commit 8754995
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
- name: Install dependencies
run: npm install

- name: Bump version
run: |
npm version patch # Change to minor/major as needed
git push origin main --tags # Push the new tag
- name: Package VSCode extension
run: |
npm install -g vsce
Expand All @@ -33,8 +38,8 @@ jobs:
id: create_release
uses: ncipollo/release-action@v1
with:
tag: ${{ github.ref_name }}
name: Release ${{ github.ref_name }}
tag: ${{ github.ref }}
name: Release ${{ github.ref }}
artifacts: ./*.vsix
draft: false
prerelease: false

0 comments on commit 8754995

Please sign in to comment.