File tree 1 file changed +3
-10
lines changed
1 file changed +3
-10
lines changed Original file line number Diff line number Diff line change 15
15
16
16
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
17
17
jobs :
18
- # Creates Signs and Pushes a NuGet from a Nuspec file called template.nuspec located in the root of workspace"
18
+ # Creates from a Nuspec file called template.nuspec located in the root of workspace"
19
19
build :
20
20
# The type of runner that the job will run on
21
21
runs-on : ubuntu-latest
22
22
# Steps represent a sequence of tasks that will be executed as part of the job
23
23
steps :
24
24
- uses : actions/checkout@v3
25
- # - uses: nuget/setup-nuget@v1
26
- # with:
27
- # nuget-api-key: ${{ secrets.NuGetAPIKey }}
28
- # nuget-version: '6.x'
29
-
25
+
30
26
- name : Create NuGet Package
31
27
run : |
32
28
dotnet pack ./working
49
45
name : NugetPackages
50
46
path : " ${{ steps.findcreatednuget.outputs.nugetPackageName }}"
51
47
52
- # Creates Signs and Pushes a NuGet from a Nuspec file called template.nuspec located in the root of workspace"
48
+ # Signing cannot be done from linux environment (https://github.com/dotnet/runtime/issues/48794)
53
49
sign :
54
50
# The type of runner that the job will run on
55
51
runs-on : windows-latest
79
75
run : certutil -decode encodedSignatureFile Skyline.pfx
80
76
shell : bash
81
77
82
- # - name: Setup NuGet.exe for use with actions
83
- # uses: NuGet/setup-nuget@v1.1.1
84
-
85
78
- name : Sign NuGet Package
86
79
run : |
87
80
#nuget sign "${{ steps.findcreatednuget.outputs.nugetPackageName }}" -NonInteractive -CertificatePath "Skyline.pfx" -Timestamper "http://timestamp.comodoca.com/rfc3161" -CertificatePassword ${{ secrets.SKYLINEPFXPASSWORD }}
You can’t perform that action at this time.
0 commit comments