We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8499f79 + 09f6b81 commit c3a2c2dCopy full SHA for c3a2c2d
2 files changed
.github/workflows/publish.yml
@@ -16,7 +16,7 @@ jobs:
16
17
strategy:
18
matrix:
19
- os: [macos-latest]
+ os: [macos-latest, windows-latest, ubuntu-latest]
20
21
steps:
22
- name: Checkout git repo
@@ -44,4 +44,4 @@ jobs:
44
# This is used for uploading release assets to github
45
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
46
run: |
47
- npm exec electron-builder -- --publish always --win --mac --linux
+ npm exec electron-builder -- --publish always
.github/workflows/test.yml
@@ -1,6 +1,6 @@
1
name: Test
2
3
-on: [push, pull_request]
+on: [push, pull_request, workflow_dispatch]
4
5
jobs:
6
test:
@@ -19,6 +19,11 @@ jobs:
with:
node-version: 18
cache: npm
+
23
+ - name: Setup Python
24
+ uses: actions/setup-python@v2
25
+ with:
26
+ python-version: '3.10'
27
28
- name: npm install
29
0 commit comments