Skip to content

Commit 5fafd88

Browse files
committed
Fixing workflows with new versions
1 parent 6a7dcea commit 5fafd88

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/_build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- name: Version stamping
3131
id: vsix_version
32-
uses: dotnet/nbgv@f088059084cb5d872e9d1a994433ca6440c2bf72
32+
uses: dotnet/nbgv@v0.4
3333
with:
3434
setAllVars: true
3535

.github/workflows/publish.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Publish extension to Marketplace
4949
#if: ${{ contains(github.event.head_commit.message, '[release]') }}
5050
continue-on-error: true # remove after VS bug fix
51-
uses: cezarypiatek/VsixPublisherAction@1.0
51+
uses: cezarypiatek/VsixPublisherAction@1.1
5252
with:
5353
extension-file: '${{ github.event.repository.name }}.vsix'
5454
publish-manifest-file: 'vs-publish.json'

src/source.extension.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal sealed partial class Vsix
99
{
1010
public const string Id = "TimHeuer.GitHubActions";
1111
public const string Name = "GitHub Actions";
12-
public const string Description = @"A window that provides a view of GitHub Actions for the current repo of the opened solution in Visual Studio";
12+
public const string Description = @"A window that provides a view of GitHub Actions for the current repo of the opened solution in Visual Studio. Provided by @timheuer";
1313
public const string Language = "en-US";
1414
public const string Version = "0.0.999";
1515
public const string Author = "Tim Heuer";

src/source.extension.vsixmanifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Metadata>
44
<Identity Id="TimHeuer.GitHubActions" Version="0.0.999" Language="en-US" Publisher="Tim Heuer" />
55
<DisplayName>GitHub Actions</DisplayName>
6-
<Description xml:space="preserve">A window that provides a view of GitHub Actions for the current repo of the opened solution in Visual Studio</Description>
6+
<Description xml:space="preserve">A window that provides a view of GitHub Actions for the current repo of the opened solution in Visual Studio. Provided by @timheuer</Description>
77
<MoreInfo>https://github.com/timheuer/GitHubActionsVS</MoreInfo>
88
<License>LICENSE</License>
99
<GettingStartedGuide>https://github.com/timheuer/GitHubActionsVS</GettingStartedGuide>

0 commit comments

Comments
 (0)