Skip to content

Commit

Permalink
fix(CI): repair build
Browse files Browse the repository at this point in the history
  • Loading branch information
KULBIDA Pavel authored and KULBIDA Pavel committed Jan 11, 2024
1 parent 8f78a09 commit 69f940f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ jobs:

- name: Build
env:
GitVersion_NuGetVersion: $(GITVERSION_NUGETVERSION)
GitVersion_AssemblySemVer: $(GITVERSION_ASSEMBLYSEMVER)
GitVersion_AssemblySemFileVer: $(GITVERSION_ASSEMBLYSEMFILEVER)
GitVersion_InformationalVersion: $(GITVERSION_INFORMATIONALVERSION)
GitVersion_NuGetVersion: $GITVERSION_NUGETVERSION
GitVersion_AssemblySemVer: $GITVERSION_ASSEMBLYSEMVER
GitVersion_AssemblySemFileVer: $GITVERSION_ASSEMBLYSEMFILEVER
GitVersion_InformationalVersion: $GITVERSION_INFORMATIONALVERSION
run: |
dotnet build "$PROJECT_NAME" -c Release --nologo --no-restore
Expand All @@ -110,10 +110,10 @@ jobs:
- name: Pack
if: github.ref == 'refs/heads/master'
env:
GitVersion_NuGetVersion: $(GITVERSION_NUGETVERSION)
GitVersion_AssemblySemVer: $(GITVERSION_ASSEMBLYSEMVER)
GitVersion_AssemblySemFileVer: $(GITVERSION_ASSEMBLYSEMFILEVER)
GitVersion_InformationalVersion: $(GITVERSION_INFORMATIONALVERSION)
GitVersion_NuGetVersion: $GITVERSION_NUGETVERSION
GitVersion_AssemblySemVer: $GITVERSION_ASSEMBLYSEMVER
GitVersion_AssemblySemFileVer: $GITVERSION_ASSEMBLYSEMFILEVER
GitVersion_InformationalVersion: $GITVERSION_INFORMATIONALVERSION
run: dotnet pack $PROJECT_NAME -c Release -o ./nupkgs --nologo --no-build

- name: Push nuget packages
Expand Down

0 comments on commit 69f940f

Please sign in to comment.