Skip to content

Commit

Permalink
Merge pull request #1751 from erri120/ci/download-github
Browse files Browse the repository at this point in the history
Download CodeSignTool from GitHub and fix CI
  • Loading branch information
erri120 authored Jul 11, 2024
2 parents 4856061 + 40278cb commit 4809df7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-linux-pupnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
artifactUrl: ${{ steps.upload.outputs.artifact-url }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: "recursive"

Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
artifactUrl: ${{ steps.upload.outputs.artifact-url }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: "recursive"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-windows-pupnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
artifactUrl: ${{ steps.upload.outputs.artifact-url }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: "recursive"

Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
artifactUrl: ${{ steps.upload.outputs.artifact-url }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: "recursive"

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,25 +97,25 @@ jobs:

steps:
- name: Get Linux Archive
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.build-linux.outputs.ArtifactNameLinuxArchive }}
path: bin/LinuxArchive

- name: Get Linux AppImage
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.build-linux.outputs.ArtifactNameLinuxAppImage }}
path: bin/LinuxAppImage

- name: Get Windows Archive
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.build-windows.outputs.ArtifactNameWindowsArchive }}
path: bin/WindowsArchive

- name: Get Windows Inno Setup
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.build-windows.outputs.ArtifactNameWindowsInnoSetup }}
path: bin/WindowsInnoSetup
Expand Down
4 changes: 3 additions & 1 deletion scripts/download-codesigntool.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ $ErrorActionPreference = "Stop"
$ProgressPreference = 'SilentlyContinue' #'Continue

$rootDir = Resolve-Path "."
$downloadUrl = "https://www.ssl.com/download/codesigntool-for-windows/"

# https://github.com/SSLcom/CodeSignTool/releases
$downloadUrl = "https://github.com/SSLcom/CodeSignTool/releases/download/v1.3.0/CodeSignTool-v1.3.0-windows.zip"
$downloadedFile = Join-Path $rootDir "CodeSignTool.zip"
$extractFolder = Join-Path $rootDir "CodeSignTool"

Expand Down

0 comments on commit 4809df7

Please sign in to comment.