Skip to content

Commit

Permalink
Increment version 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
cristipufu committed Apr 22, 2024
1 parent af771a6 commit f44b6df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Setup .NET 8
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.100-rc.2.23502.2'
dotnet-version: '8.0.x'
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/nuget_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
- name: Build and Publish
run: |
cd ./src/Nest.OData/
dotnet pack -c Release -o artifacts -p:PackageVersion=1.0.5
dotnet pack -c Release -o artifacts -p:PackageVersion=1.0.6
- name: Push
run: dotnet nuget push ./src/Nest.OData/artifacts/Nest.OData.1.0.5.nupkg -k ${{ secrets.NUGET_APIKEY }} -s https://api.nuget.org/v3/index.json
run: dotnet nuget push ./src/Nest.OData/artifacts/Nest.OData.1.0.6.nupkg -k ${{ secrets.NUGET_APIKEY }} -s https://api.nuget.org/v3/index.json

- name: Build and Publish v7
run: |
cd ./src/Nest.OData/
dotnet pack -c Release_V7 -o artifacts_v7 -p:PackageVersion=1.0.5 -p:PackageId=Nest.OData.v7
dotnet pack -c Release_V7 -o artifacts_v7 -p:PackageVersion=1.0.6 -p:PackageId=Nest.OData.v7
- name: Push v7
run: dotnet nuget push ./src/Nest.OData/artifacts_v7/Nest.OData.v7.1.0.5.nupkg -k ${{ secrets.NUGET_APIKEY }} -s https://api.nuget.org/v3/index.json
run: dotnet nuget push ./src/Nest.OData/artifacts_v7/Nest.OData.v7.1.0.6.nupkg -k ${{ secrets.NUGET_APIKEY }} -s https://api.nuget.org/v3/index.json

0 comments on commit f44b6df

Please sign in to comment.