@@ -30,41 +30,41 @@ jobs:
30
30
with :
31
31
setAllVars : true
32
32
33
- - name : ⚙️ Setup dotnet 7.0.x
34
- uses : actions/setup-dotnet@v1
35
- with :
36
- dotnet-version : ' 7.0.x'
33
+ # - name: ⚙️ Setup dotnet 7.0.x
34
+ # uses: actions/setup-dotnet@v1
35
+ # with:
36
+ # dotnet-version: '7.0.x'
37
37
38
- - name : ⚙️ Set up JDK 11
39
- uses : actions/setup-java@v1
40
- with :
41
- java-version : 1.11
38
+ # - name: ⚙️ Set up JDK 11
39
+ # uses: actions/setup-java@v1
40
+ # with:
41
+ # java-version: 1.11
42
42
43
- - name : 📐 Ensure nuget.org added as package source on Windows
44
- run : dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org --configfile $env:APPDATA\NuGet\NuGet.Config
45
- continue-on-error : true
43
+ # - name: 📐 Ensure nuget.org added as package source on Windows
44
+ # run: dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org --configfile $env:APPDATA\NuGet\NuGet.Config
45
+ # continue-on-error: true
46
46
47
- - name : 🔁 Restore packages
48
- run : dotnet restore Atc.Installer-WithoutSetup.sln
47
+ # - name: 🔁 Restore packages
48
+ # run: dotnet restore Atc.Installer-WithoutSetup.sln
49
49
50
- - name : 🛠️ Build
51
- run : dotnet build Atc.Installer-WithoutSetup.sln -c Release --no-restore /p:UseSourceLink=true
50
+ # - name: 🛠️ Build
51
+ # run: dotnet build Atc.Installer-WithoutSetup.sln -c Release --no-restore /p:UseSourceLink=true
52
52
53
- - name : 🧪 Run unit tests
54
- run : dotnet test Atc.Installer-WithoutSetup.sln -c Release --no-build --filter "Category!=Integration"
53
+ # - name: 🧪 Run unit tests
54
+ # run: dotnet test Atc.Installer-WithoutSetup.sln -c Release --no-build --filter "Category!=Integration"
55
55
56
- - name : 🌩️ SonarCloud install scanner
57
- run : dotnet tool install --global dotnet-sonarscanner
56
+ # - name: 🌩️ SonarCloud install scanner
57
+ # run: dotnet tool install --global dotnet-sonarscanner
58
58
59
- - name : 🌩️ SonarCloud analyze
60
- env :
61
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
62
- SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
63
- shell : pwsh
64
- run : |
65
- dotnet sonarscanner begin /k:"atc-wpf" /o:"atc-net" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
66
- dotnet build Atc.Installer-WithoutSetup.sln -c Release /p:UseSourceLink=true --no-restore
67
- dotnet sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"
59
+ # - name: 🌩️ SonarCloud analyze
60
+ # env:
61
+ # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
62
+ # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
63
+ # shell: pwsh
64
+ # run: |
65
+ # dotnet sonarscanner begin /k:"atc-wpf" /o:"atc-net" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
66
+ # dotnet build Atc.Installer-WithoutSetup.sln -c Release /p:UseSourceLink=true --no-restore
67
+ # dotnet sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"
68
68
69
69
- name : ⏩ Merge to stable-branch
70
70
run : |
74
74
git merge --ff-only main
75
75
git push origin stable
76
76
77
- - name : 🗳️ Creating library package for pre-release
78
- run : dotnet pack Atc.Installer-WithoutSetup.sln -c Release --no-restore -o ${GITHUB_WORKSPACE}/packages -p:RepositoryBranch=$BRANCH_NAME
77
+ # - name: 🗳️ Creating library package for pre-release
78
+ # run: dotnet pack Atc.Installer-WithoutSetup.sln -c Release --no-restore -o ${GITHUB_WORKSPACE}/packages -p:RepositoryBranch=$BRANCH_NAME
0 commit comments