Skip to content

Commit

Permalink
Update bump-version script to include StateStorage (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
einarmo authored Jun 17, 2020
1 parent a5a0d7a commit 95fe820
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ jobs:

- name: Dotnet Pack Metrics
run: dotnet pack Cognite.Metrics/Cognite.Metrics.csproj --output nuget-packages --configuration Release -p:PackageVersion=${GITHUB_REF##*/v}


- name: Dotnet Pack StateStorage
run: dotnet pack Cognite.StateStorage/Cognite.StateStorage.csproj --output nuget-packages --configuration Release -p:PackageVersion=${GITHUB_REF##*/v}

- name: Dotnet Pack Utils
run: dotnet pack ExtractorUtils/ExtractorUtils.csproj --output nuget-packages --configuration Release -p:PackageVersion=${GITHUB_REF##*/v}

Expand All @@ -49,6 +52,10 @@ jobs:
run: dotnet nuget push nuget-packages/Cognite.Extractor.Metrics*.nupkg --skip-duplicate --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
continue-on-error: false

- name: Dotnet Nuget Push StateStorage
run: dotnet nuget push nuget-packages/Cognite.Extractor.StateStorage*.nupkg --skip-duplicate --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
continue-on-error: false

- name: Dotnet Nuget Push Utils
run: dotnet nuget push nuget-packages/Cognite.ExtractorUtils*.nupkg --skip-duplicate --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
continue-on-error: false
Expand Down

0 comments on commit 95fe820

Please sign in to comment.