Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Package v1.5.1 #1445

Merged
merged 2 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 38 additions & 38 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,43 +95,43 @@ jobs:
# Login to Snap Store
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }}

# - name: Build Electron app (Windows)
# if: startsWith(matrix.os, 'windows')
# run: |
# yarn run electron:build
- name: Build Electron app (Windows)
if: startsWith(matrix.os, 'windows')
run: |
yarn run electron:build

# - name: Sign built binary (Windows)
# if: startsWith(matrix.os, 'windows')
# # Instead of pointing to a specific .exe, uses a PowerShell script which iterates through all the files stored in dist folder.
# # If the file has the .exe extension, then it will use the AzureSignTool command to sign it.
# run: |
# cd dist; Get-ChildItem -recurse -Include **.exe | ForEach-Object {
# $exePath = $_.FullName
# & AzureSignTool sign -kvu "${{ secrets.azure_key_vault_url }}" -kvi "${{ secrets.azure_key_vault_client_id }}" -kvt "${{ secrets.azure_key_vault_tenant_id }}" -kvs "${{ secrets.azure_key_vault_client_secret }}" -kvc "${{ secrets.azure_key_vault_name }}" -tr http://timestamp.digicert.com -v $exePath
# }; cd ..

# - name: Cleanup artifacts (Windows)
# if: startsWith(matrix.os, 'windows')
# run: |
# mkdir dist/temp; Move-Item -Path dist/*.exe, dist/*.blockmap, dist/latest.yml -Destination dist/temp
# npx rimraf "dist/!(temp)"
# npx rimraf "dist/.icon-ico"
# mv dist/temp/* dist
# npx rimraf "dist/temp"

# - name: Upload artifacts (Windows)
# uses: actions/upload-artifact@v2
# if: startsWith(matrix.os, 'windows')
# with:
# name: ${{ matrix.os }}
# path: dist
- name: Sign built binary (Windows)
if: startsWith(matrix.os, 'windows')
# Instead of pointing to a specific .exe, uses a PowerShell script which iterates through all the files stored in dist folder.
# If the file has the .exe extension, then it will use the AzureSignTool command to sign it.
run: |
cd dist; Get-ChildItem -recurse -Include **.exe | ForEach-Object {
$exePath = $_.FullName
& AzureSignTool sign -kvu "${{ secrets.azure_key_vault_url }}" -kvi "${{ secrets.azure_key_vault_client_id }}" -kvt "${{ secrets.azure_key_vault_tenant_id }}" -kvs "${{ secrets.azure_key_vault_client_secret }}" -kvc "${{ secrets.azure_key_vault_name }}" -tr http://timestamp.digicert.com -v $exePath
}; cd ..

# - name: Release Electron app (Windows)
# uses: softprops/action-gh-release@v1
# if: startsWith(matrix.os, 'windows')
# with:
# draft: true
# tag_name: v${{ steps.package_json.outputs.version }}
# files: "dist/**"
# env:
# GITHUB_TOKEN: ${{ secrets.github_token }}
- name: Cleanup artifacts (Windows)
if: startsWith(matrix.os, 'windows')
run: |
mkdir dist/temp; Move-Item -Path dist/*.exe, dist/*.blockmap, dist/latest.yml -Destination dist/temp
npx rimraf "dist/!(temp)"
npx rimraf "dist/.icon-ico"
mv dist/temp/* dist
npx rimraf "dist/temp"

- name: Upload artifacts (Windows)
uses: actions/upload-artifact@v2
if: startsWith(matrix.os, 'windows')
with:
name: ${{ matrix.os }}
path: dist

- name: Release Electron app (Windows)
uses: softprops/action-gh-release@v1
if: startsWith(matrix.os, 'windows')
with:
draft: true
tag_name: v${{ steps.package_json.outputs.version }}
files: "dist/**"
env:
GITHUB_TOKEN: ${{ secrets.github_token }}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
*Unreleased*

*Released*
## [v1.5.1] - 2024-07-05
### Additions
- Security enhancement on DApp Browser
- web3 library dependencies bump
## [v1.5.0] - 2024-03-12
### Additions
- Security enhancement on DApp Browser
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chain-desktop-wallet",
"version": "1.5.0",
"version": "1.5.1",
"description": "Crypto.com DeFi Desktop Wallet App",
"repository": "github:crypto-com/chain-desktop-wallet",
"author": "Crypto.com <[email protected]>",
Expand Down
Loading