Skip to content

Commit

Permalink
Merge pull request #113 from oslabs-beta/main
Browse files Browse the repository at this point in the history
Attempting github workflow fix
  • Loading branch information
peterzepf committed Aug 24, 2023
2 parents 98f8500 + c6780a0 commit 56e056c
Show file tree
Hide file tree
Showing 4 changed files with 1,099 additions and 141 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/electron.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Electron Release

# This workflow is responsible for automatically building and releasing the electron app on pushes to the master branch. Build specific configurations are set in electron-builder.yml.
# This workflow is responsible for automatically building and releasing the electron app on pushes to the master branch. Build specific configurations are set in electron-builder.yml.

# When ready to release a new version:
# 1. create a draft release and set tag to the new version
Expand Down Expand Up @@ -34,15 +34,15 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 14
node-version: '18.x'

- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
uses: peterzepf/action-electron-builder@1.6.1
with:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '14.x'
node-version: '18.x'
- run: npm ci
- run: npm test
Loading

0 comments on commit 56e056c

Please sign in to comment.