Skip to content

Commit

Permalink
Fixing workflows with new versions
Browse files Browse the repository at this point in the history
  • Loading branch information
timheuer committed Jan 27, 2024
1 parent 6a7dcea commit 5fafd88
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Version stamping
id: vsix_version
uses: dotnet/nbgv@f088059084cb5d872e9d1a994433ca6440c2bf72
uses: dotnet/nbgv@v0.4
with:
setAllVars: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Publish extension to Marketplace
#if: ${{ contains(github.event.head_commit.message, '[release]') }}
continue-on-error: true # remove after VS bug fix
uses: cezarypiatek/VsixPublisherAction@1.0
uses: cezarypiatek/VsixPublisherAction@1.1
with:
extension-file: '${{ github.event.repository.name }}.vsix'
publish-manifest-file: 'vs-publish.json'
Expand Down
2 changes: 1 addition & 1 deletion src/source.extension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ internal sealed partial class Vsix
{
public const string Id = "TimHeuer.GitHubActions";
public const string Name = "GitHub Actions";
public const string Description = @"A window that provides a view of GitHub Actions for the current repo of the opened solution in Visual Studio";
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";
public const string Language = "en-US";
public const string Version = "0.0.999";
public const string Author = "Tim Heuer";
Expand Down
2 changes: 1 addition & 1 deletion src/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Metadata>
<Identity Id="TimHeuer.GitHubActions" Version="0.0.999" Language="en-US" Publisher="Tim Heuer" />
<DisplayName>GitHub Actions</DisplayName>
<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>
<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>
<MoreInfo>https://github.com/timheuer/GitHubActionsVS</MoreInfo>
<License>LICENSE</License>
<GettingStartedGuide>https://github.com/timheuer/GitHubActionsVS</GettingStartedGuide>
Expand Down

0 comments on commit 5fafd88

Please sign in to comment.