Skip to content

Commit c3a2c2d

Browse files
authored
Merge pull request #29 from kiyu-git/feature/edit-action
Feature/edit action
2 parents 8499f79 + 09f6b81 commit c3a2c2d

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
os: [macos-latest]
19+
os: [macos-latest, windows-latest, ubuntu-latest]
2020

2121
steps:
2222
- name: Checkout git repo
@@ -44,4 +44,4 @@ jobs:
4444
# This is used for uploading release assets to github
4545
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4646
run: |
47-
npm exec electron-builder -- --publish always --win --mac --linux
47+
npm exec electron-builder -- --publish always

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Test
22

3-
on: [push, pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
66
test:
@@ -19,6 +19,11 @@ jobs:
1919
with:
2020
node-version: 18
2121
cache: npm
22+
23+
- name: Setup Python
24+
uses: actions/setup-python@v2
25+
with:
26+
python-version: '3.10'
2227

2328
- name: npm install
2429
run: |

0 commit comments

Comments
 (0)