Release desktop wallet #102
Workflow file for this run
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
name: Release desktop wallet | |
on: | |
push: | |
tags: ['alephium-desktop-wallet@[0-9]+.[0-9]+.[0-9]+*'] | |
jobs: | |
release-desktop-wallet: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# os: [macos-latest, ubuntu-latest, windows-latest] | |
os: [windows-latest] | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Install pnpm package manager | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Install NPM dependencies | |
run: pnpm install | |
- name: Prepare for app notarization | |
if: startsWith(matrix.os, 'macos') | |
run: | | |
mkdir -p ~/private_keys/ | |
echo '${{ secrets.api_key }}' > ~/private_keys/AuthKey_${{ secrets.api_key_id }}.p8 | |
echo '${{ secrets.mac_certs }}' | base64 -d > applecert.p12 | |
- name: Extract platform name | |
id: get-os | |
run: echo "os=$(echo ${{ matrix.os }} | cut -d- -f1)" >> $GITHUB_OUTPUT | |
shell: bash | |
- name: Install Snapcraft | |
uses: samuelmeuli/action-snapcraft@v1 | |
if: startsWith(matrix.os, 'ubuntu') | |
- name: Build & release Electron app | |
uses: nop33/[email protected] | |
if: ${{ startsWith(github.ref, 'refs/tags/alephium-desktop-wallet@') }} | |
with: | |
package_root: 'apps/desktop-wallet' | |
build_script_name: 'ci:build:${{ steps.get-os.outputs.os }}' | |
is_monorepo: true | |
release: true | |
github_token: ${{ secrets.github_token }} | |
mac_certs: ${{ secrets.MAC_CERTS }} | |
mac_certs_password: ${{ secrets.MAC_CERTS_PASSWORD }} | |
env: | |
APPLE_ID: ${{ secrets.APPLE_ID }} | |
APPLE_ID_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }} | |
APPLEID: ${{ secrets.APPLE_ID }} | |
APPLEIDPASS: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }} | |
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }} | |
ES_USERNAME: ${{ secrets.ES_USERNAME }} | |
ES_PASSWORD: ${{ secrets.ES_PASSWORD }} | |
CREDENTIAL_ID: ${{ secrets.CREDENTIAL_ID }} | |
ES_TOTP_SECRET: ${{ secrets.ES_TOTP_SECRET }} | |
# - name: Create artifacts directory to prepare for signing Windows exe file | |
# if: startsWith(matrix.os, 'windows') | |
# shell: bash | |
# run: mkdir ${GITHUB_WORKSPACE}/artifacts | |
# - name: Find Alephuim-*.exe file that needs to be signed | |
# if: startsWith(matrix.os, 'windows') | |
# id: get-exefile | |
# run: echo "exefile=$(find . -name 'Alephium-*.exe')" >> $GITHUB_OUTPUT | |
# shell: bash | |
# - name: Sign Alephuim-*.exe with CodeSignTool and upload to artifacts directory | |
# uses: sslcom/esigner-codesign@develop | |
# if: startsWith(matrix.os, 'windows') | |
# with: | |
# command: sign | |
# username: ${{ secrets.ES_USERNAME }} | |
# password: ${{ secrets.ES_PASSWORD }} | |
# credential_id: ${{ secrets.CREDENTIAL_ID }} | |
# totp_secret: ${{ secrets.ES_TOTP_SECRET }} | |
# file_path: ${{ steps.get-exefile.outputs.exefile }} | |
# output_path: ${GITHUB_WORKSPACE}/artifacts | |
# malware_block: false | |
# environment_name: PROD | |
# - name: Find Alephium-*.exe signed file path and name | |
# if: startsWith(matrix.os, 'windows') | |
# id: get-signedfile | |
# run: | | |
# echo "file=$(find ${GITHUB_WORKSPACE}/artifacts -name 'Alephium-*.exe')" >> $GITHUB_OUTPUT | |
# echo "filename=$(find ${GITHUB_WORKSPACE}/artifacts -name 'Alephium-*.exe' | xargs basename)" >> $GITHUB_OUTPUT | |
# shell: bash | |
# - name: Get desktop wallet version | |
# id: get-version | |
# uses: beaconbrigade/[email protected] | |
# with: | |
# path: apps/desktop-wallet/ | |
# - name: Create draft release and upload artifacts | |
# uses: softprops/action-gh-release@v1 | |
# with: | |
# draft: true | |
# token: ${{ secrets.github_token }} | |
# files: | | |
# apps/desktop-wallet/dist/*${{ steps.get-version.outputs.version }}*.deb | |
# apps/desktop-wallet/dist/*${{ steps.get-version.outputs.version }}.AppImage | |
# apps/desktop-wallet/dist/*${{ steps.get-version.outputs.version }}*.dmg | |
# apps/desktop-wallet/dist/*${{ steps.get-version.outputs.version }}*mac.zip | |
# apps/desktop-wallet/dist/*${{ steps.get-version.outputs.version }}*.blockmap | |
# apps/desktop-wallet/dist/*${{ steps.get-version.outputs.version }}*.checksum | |
# apps/desktop-wallet/dist/latest*.yml | |
# artifacts/${{ steps.get-signedfile.outputs.filename }} |