Skip to content

Commit e7c2dff

Browse files
Cleaned Workflow
1 parent 8241907 commit e7c2dff

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

.github/workflows/CreateSignNuGet.yml

+3-10
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,14 @@ on:
1515

1616
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1717
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"
1919
build:
2020
# The type of runner that the job will run on
2121
runs-on: ubuntu-latest
2222
# Steps represent a sequence of tasks that will be executed as part of the job
2323
steps:
2424
- 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+
3026
- name: Create NuGet Package
3127
run: |
3228
dotnet pack ./working
@@ -49,7 +45,7 @@ jobs:
4945
name: NugetPackages
5046
path: "${{ steps.findcreatednuget.outputs.nugetPackageName }}"
5147

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)
5349
sign:
5450
# The type of runner that the job will run on
5551
runs-on: windows-latest
@@ -79,9 +75,6 @@ jobs:
7975
run: certutil -decode encodedSignatureFile Skyline.pfx
8076
shell: bash
8177

82-
# - name: Setup NuGet.exe for use with actions
83-
# uses: NuGet/setup-nuget@v1.1.1
84-
8578
- name: Sign NuGet Package
8679
run: |
8780
#nuget sign "${{ steps.findcreatednuget.outputs.nugetPackageName }}" -NonInteractive -CertificatePath "Skyline.pfx" -Timestamper "http://timestamp.comodoca.com/rfc3161" -CertificatePassword ${{ secrets.SKYLINEPFXPASSWORD }}

0 commit comments

Comments
 (0)