Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt committed Jul 15, 2023
1 parent e96cedf commit 96cbf70
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Expand Up @@ -224,7 +224,7 @@ jobs:
name: nuget_packages
path: src/CommandLine/bin/Release/*.nupkg

release_nuget_packages:
publish_nuget_packages:
needs: [ build_core_and_testing, build_analyzers, build_core_cli, build_framework_cli ]
runs-on: ubuntu-20.04
if: github.ref_type == 'tag'
Expand All @@ -236,7 +236,7 @@ jobs:
- run: dotnet nuget push "*.nupkg" -k ${{ secrets.NUGET_API_KEY }} -s "https://api.nuget.org/v3/index.json"
working-directory: nuget_packages

release_vs_code_extension:
publish_vs_code_extension:
needs: build_vs_code_extension
runs-on: ubuntu-20.04
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
Expand All @@ -249,7 +249,7 @@ jobs:
- run: vsce publish -p ${{ secrets.VS_MARKETPLACE_TOKEN }}
working-directory: vs_code_extension

release_ovsx_extension:
publish_ovsx_extension:
needs: build_vs_code_extension
runs-on: ubuntu-20.04
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
Expand All @@ -262,7 +262,7 @@ jobs:
- run: ovsx publish -p ${{ secrets.OPEN_VSX_TOKEN }}
working-directory: ovsx_extension

release_vs_extension:
publish_vs_extension:
needs: build_vs_extension
runs-on: windows-latest
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
Expand Down

0 comments on commit 96cbf70

Please sign in to comment.