-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Migrate release worker to Windows instead of Ubuntu - Remove unused Unix scripts
- Loading branch information
Showing
16 changed files
with
51 additions
and
290 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
name: Release | ||
|
||
on: | ||
workflow_dispatch: ~ | ||
pull_request: ~ | ||
push: | ||
tags: | ||
# ex. "v1.2.3", "v1.2.3-rc1" | ||
|
@@ -9,7 +11,7 @@ on: | |
jobs: | ||
publish: | ||
name: Publish to NuGet | ||
runs-on: ubuntu-22.04 | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
@@ -26,48 +28,54 @@ jobs: | |
- name: Setup Nuget | ||
uses: NuGet/[email protected] | ||
|
||
- name: Load NuGet package cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.nuget/packages | ||
key: ${{ runner.os }}-nuget-${{ matrix.framework }}-${{ hashFiles('**/packages.lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-nuget- | ||
- name: Restore NuGet Packages | ||
run: make restore | ||
|
||
- name: Set up dotnet tools and dependencies | ||
run: make install | ||
|
||
- name: Prep certificate imports | ||
run: mkdir -p certs | ||
|
||
- name: Import authenticity certificate | ||
run: echo "${{ secrets.AUTHENTICITY_CERT_ENC }}" > certs/authenticity_cert.pfx.enc | ||
|
||
- name: Import signing certificate | ||
run: echo "${{ secrets.SIGNING_CERT_ENC }}" > cert/signing_cert.snk.enc | ||
|
||
- name: Decrypt certificates | ||
run: make github-actions-certs-decrypt pass=${{ secrets.ENCRYPTION_KEY }} | ||
|
||
- name: Delete straggling .nupkg files | ||
run: rm -f *.nupkg || true | ||
- name: Set up certificate | ||
run: | | ||
echo "${{ secrets.SM_CLIENT_CERT_FILE_B64 }}" | base64 --decode > /d/Certificate_pkcs12.p12 | ||
shell: bash | ||
|
||
- name: Set variables | ||
id: variables | ||
run: | | ||
echo "SM_HOST=${{ secrets.SM_HOST }}" >> "$GITHUB_ENV" | ||
echo "SM_API_KEY=${{ secrets.SM_API_KEY }}" >> "$GITHUB_ENV" | ||
echo "SM_CLIENT_CERT_FILE=D:\\Certificate_pkcs12.p12" >> "$GITHUB_ENV" | ||
echo "SM_CLIENT_CERT_PASSWORD=${{ secrets.SM_CLIENT_CERT_PASSWORD }}" >> "$GITHUB_ENV" | ||
echo "C:\Program Files (x86)\Windows Kits\10\App Certification Kit" >> $GITHUB_PATH | ||
echo "C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools" >> $GITHUB_PATH | ||
echo "C:\Program Files\DigiCert\DigiCert Keylocker Tools" >> $GITHUB_PATH | ||
shell: bash | ||
|
||
- name: Setup Keylocker KSP on windows | ||
run: | | ||
curl -X GET https://one.digicert.com/signingmanager/api-ui/v1/releases/Keylockertools-windows-x64.msi/download -H "x-api-key:%SM_API_KEY%" -o Keylockertools-windows-x64.msi | ||
msiexec /i Keylockertools-windows-x64.msi /quiet /qn | ||
smksp_registrar.exe list | ||
smctl.exe keypair ls | ||
C:\Windows\System32\certutil.exe -csp "DigiCert Signing Manager KSP" -key -user | ||
shell: cmd | ||
|
||
- name: Certificates Sync | ||
run: | | ||
smctl windows certsync | ||
shell: cmd | ||
|
||
- name: Build NuGet package | ||
run: make prep-release cert=certs/authenticity_cert.pfx sncert=certs/signing_cert.snk pass=${{ secrets.CERT_PASSWORD }} | ||
run: | | ||
call scripts\win\build_release_nuget.bat EasyPost certs\signing_cert.snk "${{ secrets.SM_CODE_SIGNING_CERT_SHA1_HASH }}" Release | ||
- name: Delete certificates | ||
run: rm -rf certs | ||
# - name: Publish to NuGet | ||
# run: make publish key=${{ secrets.NUGET_API_KEY }} | ||
|
||
- name: Publish to NuGet | ||
run: make publish key=${{ secrets.NUGET_API_KEY }} | ||
|
||
- name: Create a GitHub release | ||
uses: softprops/action-gh-release@v1 | ||
# - name: Create a GitHub release | ||
# uses: softprops/action-gh-release@v1 | ||
# ref: https://github.com/softprops/action-gh-release#-customizing | ||
with: | ||
body_path: RELEASE_NOTES.md | ||
files: | | ||
"*.nupkg" | ||
# with: | ||
# body_path: RELEASE_NOTES.md | ||
# files: | | ||
# "*.nupkg" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.