Skip to content

Commit

Permalink
CI version actions fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Khertys committed Oct 18, 2023
1 parent 6ec1fd9 commit 92855ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ jobs:
recursive: true

- name: Pack nuget
run: cd EvitaDB.Client && dotnet pack -c Release -p:PackageVersion=${{ steps.release_version.outputs.version }} --no-build --no-restore
run: cd EvitaDB.Client && dotnet pack -c Release -p:PackageVersion=$(${{ steps.release_version.outputs.version }} | sed 's/^v//') --no-build --no-restore

- name: Publish nuget
run: cd bin/Release && dotnet nuget push EvitaDB.Client.${{ steps.release_version.outputs.version }}.nupkg --api-key ${{ secrets.NUGET_TOKEN }} --source https://api.nuget.org/v3/index.json
run: cd bin/Release && dotnet nuget push EvitaDB.Client.$(${{ steps.release_version.outputs.version }} | sed 's/^v//').nupkg --api-key ${{ secrets.NUGET_TOKEN }} --source https://api.nuget.org/v3/index.json

- name: Create release
id: create_release
Expand Down

0 comments on commit 92855ab

Please sign in to comment.