Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI.yml #126

Merged
merged 5 commits into from
Jan 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0

# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: 8.0.x

# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.1
uses: microsoft/setup-msbuild@v1.3.2

# Restore and build
- name: Restore and build
Expand All @@ -46,13 +46,13 @@ jobs:

# Upload the VSIX package: https://github.com/marketplace/actions/upload-a-build-artifact
- name: Upload build artifact (VSIX)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.3.0
with:
name: VSIX Package
name: VSIX Package ${{ matrix.Configuration }}
path: src/VSIX/bin/**/*.vsix

- name: Upload build artifact (VSIX)
uses: actions/upload-artifact@v3
- name: Upload build artifact (Dev 17 VSIX)
uses: actions/upload-artifact@v4.3.0
with:
name: VSIX Package (Dev 17)
name: VSIX Package ${{ matrix.Configuration }} Dev 17
path: src/VSIX_Dev17/bin/**/*.vsix
4 changes: 2 additions & 2 deletions .github/workflows/PublishVSIX.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0

- name: Publish release to marketplace
id: publish
uses: mrluje/vs-marketplace-publisher@v2
uses: mrluje/vs-marketplace-publisher@v2.1.0
with:
# (Required) Personal access token to perform action on the VS Marketplace
pat: ${{ secrets.vs_pat }}
Expand Down