File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 1111 description : ' Select .NET SDK version'
1212 required : false
1313 default : ' 9.0.x'
14+ useIntelliFactorySNK :
15+ description : ' Use IntelliFactory.snk'
16+ type : boolean
17+ required : false
18+ default : ' false'
1419 skipCoreTesting :
1520 description : ' Skip Core testing'
21+ type : boolean
1622 required : false
1723 default : ' false'
1824 branch :
@@ -110,9 +116,10 @@ jobs:
110116 git config --global user.name "IntelliFactory CI"
111117
112118 - name : Create IntelliFactory.snk
119+ if : ${{ github.event.inputs.useIntelliFactorySNK == 'true' }}
113120 shell : pwsh
114121 run : |
115- $bytes = [Convert]::FromBase64String(${{ secrets.INTELLIFACTORY_KEY_BASE64 }})
122+ $bytes = [Convert]::FromBase64String(" ${{ secrets.INTELLIFACTORY_KEY_BASE64 }}" )
116123 $snkPath = $snkPath = Join-Path -Path $PWD -ChildPath "keys/IntelliFactory.snk"
117124
118125 # Ensure the directory exists
You can’t perform that action at this time.
0 commit comments