From e520cda5e1588e9f76b3f9ab9a7b8639e6484672 Mon Sep 17 00:00:00 2001 From: BlurOne! <61806094+BlurOne-GIT@users.noreply.github.com> Date: Sun, 13 Oct 2024 20:23:51 -0300 Subject: [PATCH] chore: remove --no-restore from publish command --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b3c546d..1ee7991 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -38,7 +38,7 @@ jobs: run: dotnet restore - name: Publish - run: dotnet publish -c Release -r linux-x64 -p:PublishReadyToRun=false -p:TieredCompilation=false -p:PublishAot=true --self-contained --no-restore + run: dotnet publish -c Release -r linux-x64 -p:PublishReadyToRun=false -p:TieredCompilation=false -p:PublishAot=true --self-contained - name: Get latest tag id: get_latest_tag @@ -91,7 +91,7 @@ jobs: run: dotnet restore - name: Publish - run: dotnet publish -c Release -r win-x64 -p:PublishReadyToRun=false -p:TieredCompilation=false -p:PublishAot=true --self-contained --no-restore + run: dotnet publish -c Release -r win-x64 -p:PublishReadyToRun=false -p:TieredCompilation=false -p:PublishAot=true --self-contained - name: Get latest tag id: get_latest_tag