-
Notifications
You must be signed in to change notification settings - Fork 69
50 lines (38 loc) · 1.27 KB
/
release.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
name: Github release workflow
on: workflow_dispatch
jobs:
checks:
runs-on: macos-latest
env:
# dont treat warning as error
CI: false
strategy:
matrix:
node-version: [18.18.x]
steps:
- name: Install sha256sum
run: brew install coreutils
- name: Checkout Repository
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Pull bfx-hf-ui-core
run: npm run fetch-core
- name: Install
run: npm install
- name: Release+Build for linux/mac/windows
env:
APPLE_TEAM_ID: ${{ secrets.BFX_APPLE_TEAM_ID }}
APPLE_ID: ${{ secrets.BFX_APPLE_ID_USERNAME }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.BFX_APPLE_ID_HONEY_PASSWORD }}
APPLEID: ${{ secrets.BFX_APPLE_ID_USERNAME }}
APPLEIDPASS: ${{ secrets.BFX_APPLE_ID_HONEY_PASSWORD }}
CSC_LINK: ${{ secrets.BFX_APPLE_BUILD_CERTIFICATE_B64 }}
CSC_KEY_PASSWORD: ${{ secrets.BFX_APPLE_BUILD_CERTIFICATE_PASSWORD }}
run: npm run deploy
- name: Results
run: ls -l dist