From 809238050c522d0e9bee918d84926f0dda765421 Mon Sep 17 00:00:00 2001 From: Colin Troisemaine <56585263+ColinTr@users.noreply.github.com> Date: Mon, 21 Oct 2024 17:00:40 +0200 Subject: [PATCH 1/2] Create electron.yml --- .github/workflows/electron.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/electron.yml diff --git a/.github/workflows/electron.yml b/.github/workflows/electron.yml new file mode 100644 index 0000000..6d17b38 --- /dev/null +++ b/.github/workflows/electron.yml @@ -0,0 +1,30 @@ +name: CI +on: + push: + branches: + - electron + +jobs: + build_on_mac: + runs-on: macOS-latest + steps: + - uses: actions/checkout@master + with: + ref: electron + - uses: actions/setup-node@master + with: + node-version: 20.18.0 + - name: see directory + run: ls + + build_on_win: + runs-on: windows-2016 + steps: + - uses: actions/checkout@master + with: + ref: feature/github-actions + - uses: actions/setup-node@master + with: + node-version: 20.18.0 + - name: see directory + run: ls From cff5896eb68b4bdeadbbc59ea0a12e9c12483d4c Mon Sep 17 00:00:00 2001 From: Colin Troisemaine <56585263+ColinTr@users.noreply.github.com> Date: Mon, 21 Oct 2024 17:04:15 +0200 Subject: [PATCH 2/2] Update electron.yml --- .github/workflows/electron.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/electron.yml b/.github/workflows/electron.yml index 6d17b38..39e8c0c 100644 --- a/.github/workflows/electron.yml +++ b/.github/workflows/electron.yml @@ -2,7 +2,7 @@ name: CI on: push: branches: - - electron + - master jobs: build_on_mac: