From 0d1ba58df9b22c30d844f4d8a1111d50ee231cd9 Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Sun, 20 Oct 2024 10:37:19 +0100 Subject: [PATCH] add no restore to flags --- .github/workflows/ci-debug.yml | 2 +- .github/workflows/ci-release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-debug.yml b/.github/workflows/ci-debug.yml index 3c290ac4..b3083131 100644 --- a/.github/workflows/ci-debug.yml +++ b/.github/workflows/ci-debug.yml @@ -21,7 +21,7 @@ jobs: run: dotnet build --no-restore - name: Publish - run: dotnet publish -p:PublishSingleFile=true -p:CommitHash=${{ github.sha }} -p:CommitRef=${{ github.ref_type }}/${{ github.ref_name }} -r win-x64 -c Debug --self-contained false .\Bloxstrap\Bloxstrap.csproj + run: dotnet publish -p:PublishSingleFile=true -p:CommitHash=${{ github.sha }} -p:CommitRef=${{ github.ref_type }}/${{ github.ref_name }} -r win-x64 -c Debug --self-contained false --no-restore .\Bloxstrap\Bloxstrap.csproj - name: Upload Artifact uses: actions/upload-artifact@v4 diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index 39087c14..315819f1 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -24,7 +24,7 @@ jobs: run: dotnet build --no-restore - name: Publish - run: dotnet publish -p:PublishSingleFile=true -p:CommitHash=${{ github.sha }} -p:CommitRef=${{ github.ref_type }}/${{ github.ref_name }} -r win-x64 -c Release --self-contained false .\Bloxstrap\Bloxstrap.csproj + run: dotnet publish -p:PublishSingleFile=true -p:CommitHash=${{ github.sha }} -p:CommitRef=${{ github.ref_type }}/${{ github.ref_name }} -r win-x64 -c Release --self-contained false --no-restore .\Bloxstrap\Bloxstrap.csproj - name: Upload Artifact id: upload-artifact