Skip to content

Commit 1603241

Browse files
surapunoyouseicreeper-0910
authored andcommitted
[FB] workflow | Fix upload file path
1 parent 9933520 commit 1603241

File tree

3 files changed

+5
-24
lines changed

3 files changed

+5
-24
lines changed

.github/workflows/windows-build.yml

+1-20
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,6 @@ jobs:
279279
- name: Copy 📂
280280
run: |
281281
mkdir ~/output
282-
mkdir ~/signed_output
283282
if [[ $GHA_aarch64 == 'true' ]];then
284283
arch="aarch64"
285284
arch_inst="win64-aarch64"
@@ -336,27 +335,9 @@ jobs:
336335
GHA_out_artifact_name : ${{inputs.out_artifact_name}}
337336
GHA_default_name: floorp-windows-${{fromJson('["x86","aarch"]')[inputs.aarch64]}}_64-${{fromJson('["package","build-with-profgen"]')[inputs.profgen]}}${{fromJson('["","-zstd"]')[inputs.zstd]}}
338337

339-
- name: Publish Unsigned Package
340-
id: publish-unsigned-package
341-
uses: actions/upload-artifact@v4
342-
with:
343-
path: ~/output
344-
345-
- id: Sign
346-
uses: signpath/github-action-submit-signing-request@v1.1
347-
with:
348-
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
349-
organization-id: '3b13ba3b-8062-4df7-a4a6-217a5ec352c4'
350-
project-slug: 'Floorp'
351-
signing-policy-slug: 'test-signing'
352-
artifact-configuration-slug: 'artifacts-signing'
353-
github-artifact-id: '${{ steps.publish-unsigned-package.outputs.artifact-id }}'
354-
wait-for-completion: true
355-
output-artifact-directory: ~/signed_output
356-
357338
- name: Publish Package🎁
358339
uses: actions/upload-artifact@v4
359340
with:
360341
name: ${{env.ARTIFACT_NAME}}
361-
path: ~/signed_output
342+
path: ~/output
362343
# Publish END

.github/workflows/windows-codesign.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
C:\ProgramData\chocolatey\bin\7z.exe x C:\artifact\floorp-stub.installer.exe -oC:\unsigned\stub
5656
5757
# rename stub installer
58-
mv C:\unsigned\stub\setup-stub.exe C:\unsigned\stub\floorp-stub.installer.exe
58+
mv C:\unsigned\stub\setup-stub.exe ./floorp-stub.installer.exe
5959
6060
- uses: actions/checkout@v4
6161
name: Clone 🧬
@@ -105,8 +105,8 @@ jobs:
105105
with:
106106
name: floorp-windows-${{fromJson('["x86","aarch"]')[inputs.arch]}}_64-package-unsigned-installer
107107
path: |
108-
Floorp-Repackage/Floorp-work/floorp-win64.installer.exe
109-
C:\unsigned\stub\floorp-stub.installer.exe
108+
Floorp-Repackage/floorp-win64.installer.exe
109+
floorp-stub.installer.exe
110110
111111
- name: Sign Installers 🖊️
112112
id: Sign-Installers

0 commit comments

Comments
 (0)