Skip to content

Commit

Permalink
update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pbca26 committed Feb 2, 2021
1 parent 8c4325c commit c9d5071
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
APP_VERSION: $( node -pe "require('./package.json').version" )
run: |
./fetch-kmd-bins.sh
rm -rf bin/linux64
rm -rf bin/win64
npm install
npm run dist
tar -czvf kmd-tokens-wallet-osx-${{ env.BASE_BRANCH }}-portable.tar.gz dist/mac
Expand Down Expand Up @@ -63,6 +65,8 @@ jobs:
APP_VERSION: $( node -pe "require('./package.json').version" )
run: |
./fetch-kmd-bins.sh
rm -rf bin/osx
rm -rf bin/win64
npm install
npm run dist
tar -czvf kmd-tokens-wallet-linux-${{ env.BASE_BRANCH }}-portable.tar.gz dist/linux-unpacked
Expand Down Expand Up @@ -112,7 +116,13 @@ jobs:
BASE_BRANCH: ${{ github.base_ref }}
APP_VERSION: $( node -pe "require('./package.json').version" )
run: |
./fetch-kmd-bins.sh
mkdir bin
mkdir bin/win64
cd bin/win64
curl https://github.com/pbca26/komodod/releases/download/cd_release_8688665_dev/komodo_8688665_dev_win.zip --output komodod.zip
unzip komodod.zip
rm komodod.zip
cd ../../
npm install
npm run dist
tar -czvf kmd-tokens-wallet-win-${{ env.BASE_BRANCH }}-portable.tar.gz dist/win-unpacked
Expand Down

0 comments on commit c9d5071

Please sign in to comment.