-
Notifications
You must be signed in to change notification settings - Fork 36
103 lines (86 loc) · 2.81 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: Build and Release
on:
push:
branches:
- master
- main
workflow_dispatch:
jobs:
build:
name: Build, Test and Release
runs-on: ubuntu-latest
env:
BLOCKCORE: "blockcore"
COINVAULT: "coinvault"
FREECITY: "freecity"
steps:
- name: Checkout
uses: actions/checkout@master
with:
submodules: true
- uses: actions/setup-node@v2
with:
node-version: 18
registry-url: "https://registry.npmjs.org"
- name: Variables
run: |
echo VERSION=$(npm run version --silent) >> $GITHUB_ENV
shell: bash
- name: Package Name
run: |
echo RELEASE_NAME_BLOCKCORE=${{ env.BLOCKCORE }}-${{ env.VERSION }}.zip >> $GITHUB_ENV
echo RELEASE_NAME_COINVAULT=${{ env.COINVAULT }}-${{ env.VERSION }}.zip >> $GITHUB_ENV
echo RELEASE_NAME_FREECITY=${{ env.FREECITY }}-${{ env.VERSION }}.zip >> $GITHUB_ENV
shell: bash
- name: Setup
run: npm ci
- name: Test
run: npm test -- --no-watch --no-progress --browsers=ChromeHeadless
continue-on-error: true
# - name: Build
# run: npm run all
- name: Package Blockcore
run: |
npm run build:production
cd dist/extension
zip -r ../../${{env.RELEASE_NAME_BLOCKCORE}} "./"
cd ../../
rm -rf dist/extension
- name: Package CoinVault
run: |
npm run build:coinvault
cd dist/extension
zip -r ../../${{env.RELEASE_NAME_COINVAULT}} "./"
cd ../../
rm -rf dist/extension
- name: Package FreeCityWallet
run: |
npm run build:freecity
cd dist/extension
zip -r ../../${{env.RELEASE_NAME_FREECITY}} "./"
cd ../../
rm -rf dist/extension
- name: Upload Blockcore
uses: actions/upload-artifact@v1
with:
name: ${{env.BLOCKCORE}}-preview-${{env.VERSION}}
path: "${{env.RELEASE_NAME_BLOCKCORE}}"
- name: Upload CoinVault
uses: actions/upload-artifact@v1
with:
name: ${{env.COINVAULT}}-preview-${{env.VERSION}}
path: "${{env.RELEASE_NAME_COINVAULT}}"
- name: Upload FreeCityWallet
uses: actions/upload-artifact@v1
with:
name: ${{env.FREECITY}}-preview-${{env.VERSION}}
path: "${{env.RELEASE_NAME_FREECITY}}"
- name: Create/Update Draft Release
uses: sondreb/action-release@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
files: "${{env.RELEASE_NAME_BLOCKCORE}};${{env.RELEASE_NAME_COINVAULT}};${{env.RELEASE_NAME_FREECITY}}"
draft: true
prerelease: false
name: "Blockcore Wallet (${{env.VERSION}})"
tag: ${{env.VERSION}}