File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change 1
1
name : CI Build
2
-
3
2
on :
4
3
push :
5
- paths :
6
- - ' src/**/*'
7
- - ' build/nuke/*'
8
- - ' examples/**/*'
9
4
branches :
10
5
- ' main'
11
6
- ' release/*'
12
7
pull_request :
13
- paths :
14
- - ' src/**/*'
15
- - ' build/nuke/*'
16
- - ' examples/**/*'
17
-
8
+ # none
18
9
jobs :
19
10
Build :
20
11
runs-on : windows-latest
42
33
- name : Push to NuGet
43
34
if : ${{ github.repository == 'dotnet/Silk.NET' && github.event_name != 'pull_request' }}
44
35
run : nuke PushToNuGet --skip Clean Restore Compile Pack --nuget-feed https://pkgs.dev.azure.com/UltzOS/Silk.NET/_packaging/Experimental/nuget/v3/index.json --nuget-username ${{ secrets.AZDO_ARTIFACTS_USERNAME }} --nuget-password ${{ secrets.AZDO_ARTIFACTS_TOKEN }} --nuget-api-key az
36
+ - name : Push to GitHub Packages
37
+ if : ${{ github.repository == 'dotnet/Silk.NET' && github.event_name != 'pull_request' }}
38
+ run : nuke PushToNuGet --skip Clean Restore Compile Pack --nuget-feed https://nuget.pkg.github.com/dotnet/index.json --nuget-api-key ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments