From ead74ff16f310c03dbfe06aaaa6618a0b5985c04 Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Fri, 14 Jun 2024 19:22:36 +0100 Subject: [PATCH] Add GH token Re-order tasks --- .github/workflows/smoketest-build.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/smoketest-build.yml b/.github/workflows/smoketest-build.yml index f9c54417..31da2971 100644 --- a/.github/workflows/smoketest-build.yml +++ b/.github/workflows/smoketest-build.yml @@ -7,13 +7,18 @@ on: # pull_request: jobs: + build: - runs-on: ${{ matrix.os }} strategy: matrix: os: [windows-latest] #, ubuntu-latest, macos-latest] + runs-on: ${{ matrix.os }} + + env: + GITHUB_TOKEN: ${{ github.token }} + steps: - name: Checkout repository uses: actions/checkout@v4 @@ -23,11 +28,11 @@ jobs: with: dotnet-version: '8.0.x' - - name: Restore NuGet packages - run: dotnet restore + # - name: Restore NuGet packages + # run: dotnet restore - - name: Handle versioning - run: nbgv cloud -a -c + # - name: Handle versioning + # run: nbgv cloud -a -c - name: Build solution run: dotnet build --configuration Release