diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 72d8f7b9..f63a90b8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -54,7 +54,7 @@ deploy_staging: - echo "Deploy to staging server" - make strip_yavscd - cd src/Yavsc.Abstract - - make push NUGETSOURCE=$(NUGETSOURCE) $(NUGETSOURCEAPIKEY) + - make push NUGETSOURCE=$(NUGETSOURCE) NUGETSOURCEAPIKEY=$(NUGETSOURCEAPIKEY) environment: name: staging url: https://yavscpre.pschneider.fr diff --git a/scripts/make/dnx.mk b/scripts/make/dnx.mk index 17d711f0..fe9ab4a9 100644 --- a/scripts/make/dnx.mk +++ b/scripts/make/dnx.mk @@ -60,13 +60,13 @@ bin/output: @$(dnu) publish bin/output/wwwroot/version: bin/output - echo $(version) > bin/output/wwwroot/version + @echo $(version) > bin/output/wwwroot/version pack: $(BINTARGETPATH) ../../version.txt - nuget pack $(PRJNAME).nuspec -Version $(VERSION) -Properties config=$(CONFIGURATION) -OutputDirectory bin + @nuget pack $(PRJNAME).nuspec -Version $(VERSION) -Properties config=$(CONFIGURATION) -OutputDirectory bin push: pack - nuget push bin/$(PRJNAME).$(VERSION).nupkg $(NUGETSOURCEAPIKEY) -src $(NUGETSOURCE) + @nuget push bin/$(PRJNAME).$(VERSION).nupkg $(NUGETSOURCEAPIKEY) -src $(NUGETSOURCE) .PHONY: rc-num.txt-check