Skip to content

Commit ead74ff

Browse files
committed
Add GH token
Re-order tasks
1 parent e6a477b commit ead74ff

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/smoketest-build.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,18 @@ on:
77
# pull_request:
88

99
jobs:
10+
1011
build:
11-
runs-on: ${{ matrix.os }}
1212

1313
strategy:
1414
matrix:
1515
os: [windows-latest] #, ubuntu-latest, macos-latest]
1616

17+
runs-on: ${{ matrix.os }}
18+
19+
env:
20+
GITHUB_TOKEN: ${{ github.token }}
21+
1722
steps:
1823
- name: Checkout repository
1924
uses: actions/checkout@v4
@@ -23,11 +28,11 @@ jobs:
2328
with:
2429
dotnet-version: '8.0.x'
2530

26-
- name: Restore NuGet packages
27-
run: dotnet restore
31+
# - name: Restore NuGet packages
32+
# run: dotnet restore
2833

29-
- name: Handle versioning
30-
run: nbgv cloud -a -c
34+
# - name: Handle versioning
35+
# run: nbgv cloud -a -c
3136

3237
- name: Build solution
3338
run: dotnet build --configuration Release

0 commit comments

Comments
 (0)