diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 440f81aa..8f40c0c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,13 +26,13 @@ jobs: ${{ runner.os }}-nuget - name: Restore dependencies - run: dotnet restore + run: dotnet restore --locked-mode - name: Build 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 ${{ matrix.configuration }} --self-contained false --locked-mode .\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 ${{ matrix.configuration }} --self-contained false .\Bloxstrap\Bloxstrap.csproj - name: Upload Artifact uses: actions/upload-artifact@v3