-
Notifications
You must be signed in to change notification settings - Fork 3
93 lines (90 loc) · 2.44 KB
/
ci.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
name: Build
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
# Snapcraft Token Valid till 10 March, 2023
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-linux:
name: Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install Snapcraft
uses: samuelmeuli/[email protected]
with:
snapcraft_token: ${{ secrets.SNAPCRAFT_TOKEN }}
- name: Build it
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm install
sudo apt install flatpak flatpak-builder elfutils
npm run make && cd out/Google Docs-linux-x64 && ll
npm run publish
- uses: actions/upload-artifact@v3
with:
name: Linux
path: out/make/*
- name: Use Snapcraft
run: |
snapcraft --help
snapcraft upload --release=stable out/make/Google-Docs-linux.snap
build-mac:
name: macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Prepare for app signing and notarization
env:
API_KEY: ${{ secrets.api_key }}
if: ${{ env.API_KEY }}
run: |
echo "CSC_LINK=${{ secrets.mac_cert }}" >> $GITHUB_ENV
echo "CSC_KEY_PASSWORD=${{ secrets.mac_cert_password }}" >> $GITHUB_ENV
echo "APPLE_ID=${{ secrets.apple_id }}" >> $GITHUB_ENV
echo "APPLE_ID_PASSWORD=${{ secrets.apple_id_password }}" >> $GITHUB_ENV
echo "TEAM_ID=${{ secrets.team_id }}" >> $GITHUB_ENV
- name: Build it
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm install
npm install appdmg --save-dev
npm run make
- uses: actions/upload-artifact@v3
with:
name: macOS
path: out/make/*
build-windows:
name: Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Build it
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm install
npm run make
- uses: actions/upload-artifact@v3
with:
name: Windows
path: out/make/squirrel.windows/x64/Google-Docs-Windows.exe