-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add test action for possible signtool fix
- Loading branch information
Showing
1 changed file
with
70 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: π· Build Installer | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: π Get OctoPrint Version | ||
id: octoprint_version | ||
uses: pozetroninc/github-action-get-latest-release@master | ||
with: | ||
repository: OctoPrint/OctoPrint | ||
excludes: draft | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: π Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: π¨ Install OctoPrint into WinPython | ||
run: | | ||
WPy64-31050\Scripts\python.bat -m pip install OctoPrint==${{ steps.octoprint_version.outputs.release }} | ||
shell: cmd | ||
|
||
- name: π¨ Build Installer | ||
run: | | ||
"%programfiles(x86)%\Inno Setup 6\iscc.exe" /DOctoPrintVersion="${{ steps.octoprint_version.outputs.release }}" "OctoPrint Setup.iss" | ||
shell: cmd | ||
|
||
- name: π¨ Generate CA | ||
id: write_file | ||
uses: timheuer/[email protected] | ||
with: | ||
fileName: 'OctoPrintCA.crt' | ||
encodedString: ${{ secrets.OCTOPRINT_CA }} | ||
|
||
- name: π Import CA | ||
run: | | ||
certutil -addstore "Root" "${{ steps.write_file.outputs.filePath }}" | ||
shell: cmd | ||
|
||
- name: βοΈ Sign Installer | ||
uses: jneilliii/signtool-code-sign@main | ||
with: | ||
certificate: '${{ secrets.CERTIFICATE }}' | ||
password: '${{ secrets.PASSWORD }}' | ||
certificatesha1: '${{ secrets.CERTHASH }}' | ||
folder: 'Output' | ||
recursive: false | ||
timestampUrl: 'http://timestamp.digicert.com' | ||
debug: true | ||
|
||
- name: π§Ή Delete Existing Release and Tag | ||
run: gh release delete ${{ steps.octoprint_version.outputs.release }} --cleanup-tag | ||
continue-on-error: true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: π Create Release and Attach Assets | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
name: "OctoPrint ${{ steps.octoprint_version.outputs.release }} Setup for Windows" | ||
tag_name: "${{ steps.octoprint_version.outputs.release }}" | ||
body: "OctoPrint Setup created with Inno Setup using WinPython, winsw, and GitHub Actions." | ||
fail_on_unmatched_files: true | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
files: | | ||
Output/OctoPrint Setup ${{ steps.octoprint_version.outputs.release }}.exe |