This commit is contained in:
tobtoht 2025-03-25 11:57:12 +01:00
parent 3bbb812839
commit 612a0a6b7f
2 changed files with 5 additions and 5 deletions
.github/workflows
contrib/guix/libexec

View file

@ -149,16 +149,16 @@ jobs:
api-token: '${{ secrets.SIGNPATH_API_KEY }}'
organization-id: 'd3e94749-9c69-44e9-82de-c65cb3832869'
project-slug: 'feather'
signing-policy-slug: 'test-signing'
signing-policy-slug: 'release-signing'
artifact-configuration-slug: ${{ env.ARTIFACT_SLUG }}
github-artifact-id: ${{ env.ARTIFACT_ID }}
wait-for-completion: true
output-artifact-directory: codesigning/
- name: "extract signature"
run: osslsigncode extract-signature -in codesigning/guix-build-*/output/${{ matrix.toolchain.target }}/*.exe -out codesigning/${{ matrix.toolchain.target }}-${{github.ref_name}}.pem
run: osslsigncode extract-signature -in codesigning/guix-build-*/output/${{ matrix.toolchain.target }}/*.exe -out codesigning/${{ matrix.toolchain.target }}.pem
- uses: actions/upload-artifact@v4
name: "upload signature"
with:
name: ${{ matrix.toolchain.target }}.pem
path: |
codesigning/${{ matrix.toolchain.target }}-${{github.ref_name}}.pem
codesigning/${{ matrix.toolchain.target }}.pem

View file

@ -377,8 +377,8 @@ export PATH="${BASEPREFIX}/${HOST}/native/bin:${PATH}"
case "$OPTIONS" in
installer)
makensis -DCUR_PATH=$PWD -V2 contrib/installers/windows/setup.nsi
cp contrib/installers/windows/FeatherWalletSetup-*.exe "${INSTALLPATH}/"
mv contrib/installers/windows/FeatherWalletSetup-*.exe "${OUTDIR}/"
cp contrib/installers/windows/FeatherWalletSetup.exe "${INSTALLPATH}/"
mv contrib/installers/windows/FeatherWalletSetup.exe "${OUTDIR}/"
;;
esac
;;