Skip to content

Commit 60b5b3b

Browse files
committed
nuget
1 parent 3e4cb0a commit 60b5b3b

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/nuget.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ jobs:
3030
run: |
3131
shopt -s globstar
3232
for file in **/*.nupkg
33+
do
34+
dotnet nuget push "$file" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
35+
done
36+
37+
- name: publish snupkg packages
38+
run: |
39+
shopt -s globstar
40+
for file in **/*.snupkg
3341
do
3442
dotnet nuget push "$file" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
3543
done

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1414
<PackageReadmeFile>README.md</PackageReadmeFile>
1515
<Product>Managed Code - Storage</Product>
16-
<Version>2.0.16</Version>
17-
<PackageVersion>2.0.16</PackageVersion>
16+
<Version>2.0.17</Version>
17+
<PackageVersion>2.0.17</PackageVersion>
1818
</PropertyGroup>
1919
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
2020
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>

0 commit comments

Comments
 (0)