Skip to content

Commit

Permalink
Try to fix CI failure caused by dependabot update
Browse files Browse the repository at this point in the history
  • Loading branch information
gjsjohnmurray committed Oct 8, 2024
1 parent 6c18caf commit 8e0d9a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
if: runner.os == 'Windows'
run: |
npx vsce package -o ${{ steps.set-version.outputs.name }}.vsix
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: (runner.os == 'Windows') && (github.event_name != 'release')
with:
name: ${{ steps.set-version.outputs.name }}.vsix
Expand All @@ -85,15 +85,15 @@ jobs:
runs-on: windows-latest
needs: build
steps:
- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v4
with:
name: ${{ needs.build.outputs.name }}.vsix
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
tag_name: v${{ needs.build.outputs.version }}
release_name: v${{ needs.build.outputs.version }}
name: v${{ needs.build.outputs.version }}
prerelease: ${{ github.event_name != 'release' }}
token: ${{ secrets.GITHUB_TOKEN }}
files: ${{ needs.build.outputs.name }}.vsix
Expand Down

0 comments on commit 8e0d9a0

Please sign in to comment.