Skip to content

Commit

Permalink
initial test, mostly to get the filenames first
Browse files Browse the repository at this point in the history
  • Loading branch information
rozyczko committed May 31, 2024
1 parent bf0d703 commit 1f168df
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, windows-2022, macos-13, macos-14] # [ubuntu-22.04, windows-2022, macos-13, flyci-macos-14-m2]
#os: [ubuntu-22.04, windows-2022, macos-13, macos-14] # [ubuntu-22.04, windows-2022, macos-13, flyci-macos-14-m2]
os: [windows-2022]

steps:
- name: Check-out repository
Expand Down Expand Up @@ -141,6 +142,25 @@ jobs:
${{ secrets.MACOS_CERTIFICATE_ENCODED }} ${{ secrets.MACOS_CERTIFICATE_PASSWORD }}
${{ secrets.APPSTORE_NOTARIZATION_USERNAME }} ${{ secrets.APPSTORE_NOTARIZATION_PASSWORD }}
- name: print the current directory content only on windows, recursively, with powershell
if: runner.os == 'Windows'
run: Get-ChildItem -Recurse

- name: Sign the windows binary
if: runner.os == 'Windows'
uses: lando/code-sign-action@v2
with:
file: zipped-app-installer_${{ runner.os }}-${{ runner.arch }}
certificate-data: ${{ secrets.WINDOZE_CERT_DATA }}
certificate-password: ${{ secrets.WINDOZE_CERT_PASSWORD }}
keylocker-host: ${{ secrets.KEYLOCKER_HOST }}
keylocker-api-key: ${{ secrets.KEYLOCKER_API_KEY }}
keylocker-cert-sha1-hash: ${{ secrets.KEYLOCKER_CERT_SHA1_HASH }}

- name: print the current directory content
if: runner.os == 'Windows'
run: dir

- name: Create zip archive of offline app installer for distribution
run: >
python ${{ env.SCRIPTS_PATH }}/ZipAppInstaller.py
Expand Down

0 comments on commit 1f168df

Please sign in to comment.