This commit is contained in:
Aditya Kulkarni 2020-03-21 08:05:53 -07:00
parent 9d8ea680df
commit 0bbb673437
6 changed files with 8 additions and 7 deletions

View File

@ -142,9 +142,10 @@ jobs:
APP_VERSION: ${{ env.VERSION }}
run: |
bin/signbinaries.sh
tar -cf artifacts.tar.gz release/signatures*.zip release/Zecwallet*
tar -cf artifacts-$APP_VERSION.tar.gz release/signatures*.zip release/Zecwallet*
ls -lh
- name: Upload final artifacts
uses: actions/upload-artifact@v1
with:
name: artifacts
path: artifacts.tar.gz
path: artifacts-${{ env.VERSION }}.tar.gz

View File

@ -182,7 +182,7 @@ class Sidebar extends PureComponent<Props, State> {
openErrorModal(
'Zecwallet Lite',
<div className={cstyles.verticalflex}>
<div className={cstyles.margintoplarge}>Zecwallet Lite v1.1.1</div>
<div className={cstyles.margintoplarge}>Zecwallet Lite v1.1.2</div>
<div className={cstyles.margintoplarge}>Built with Electron. Copyright (c) 2018-2020, Aditya Kulkarni.</div>
<div className={cstyles.margintoplarge}>
The MIT License (MIT) Copyright (c) 2018-2020 Zecwallet

View File

@ -1,7 +1,7 @@
{
"name": "zecwallet-lite",
"productName": "Zecwallet Lite",
"version": "1.1.1",
"version": "1.1.2",
"description": "Zecwallet Lite",
"main": "./main.prod.js",
"author": {

View File

@ -1 +1 @@
echo "::set-env name=VERSION::1.1.1"
echo "::set-env name=VERSION::1.1.2"

View File

@ -1,4 +1,4 @@
#!/bin/bash
VERSION="1.1.1"
VERSION="1.1.2"
echo "::set-env name=VERSION::$VERSION"

View File

@ -1,7 +1,7 @@
{
"name": "zecwallet-lite",
"productName": "Zecwallet Lite",
"version": "1.1.1",
"version": "1.1.2",
"description": "Zecwallet Lite (Electron version)",
"scripts": {
"build": "yarn neon && concurrently \"yarn build-main\" \"yarn build-renderer\"",