Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Nagarjun Sanji committed Sep 18, 2024
1 parent 6f3e6bf commit 1234a2f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
run: vsce package

- name: Upload VSIX artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vsce-package
path: "*.vsix"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:

- name: Get latest tag
run: |
latest-tag=$(git describe --tags --abbrev=0)
echo "Latest tag: $latest-tag"
echo "LATEST_TAG=$latest-tag" >> $GITHUB_ENV
LATEST_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "0.0.0")
echo "LATEST_TAG=$LATEST_TAG" >> $GITHUB_ENV
shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}

- name: Set up Node.js
uses: actions/setup-node@v4
Expand All @@ -39,7 +39,7 @@ jobs:
run: vsce package

- name: Upload VSIX artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: vsce-package
path: "*.vsix"
Expand Down

0 comments on commit 1234a2f

Please sign in to comment.