Skip to content

Commit

Permalink
Fixing release yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
juanpgarces committed Jan 26, 2021
1 parent f5b9212 commit 9f00f5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:
with:
nuget-version: 'latest'
- name: Restore packages
run: nuget restore src\UPS.csproj
run: nuget restore src\UPS.sln
- name: .NET Build
run: dotnet build src\UPS.sln --configuration Release
- name: Create the package
run: dotnet publish --configuration Release src\UPS.csproj
run: dotnet publish --configuration Release src\UPS\UPS.csproj
- name: Publish to NuGet
uses: brandedoutcast/publish-nuget@v2
with:
PROJECT_FILE_PATH: src\UPS.csproj
PROJECT_FILE_PATH: src\UPS\UPS.csproj
VERSION_REGEX: '^\s*<PackageVersion>(.*)<\/PackageVersion>\s*$'
TAG_FORMAT: '*'
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
Expand Down

0 comments on commit 9f00f5f

Please sign in to comment.