Skip to content

Commit

Permalink
v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
teamsandpaper01 committed Nov 25, 2022
1 parent b3e15b0 commit 3d4c59c
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions .github/workflows/desktop_build_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Desktop Build/Release

on:
push:
branches: ['dev', 'main']

defaults:
run:
working-directory: desktop_frontend

jobs:
release:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]

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

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 10

- name: Build/release Electron app
uses: samuelmeuli/[email protected]
with:
github_token: ${{ secrets.github_token }}

# If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
2 changes: 1 addition & 1 deletion dekstop_frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "electron_setup",
"version": "0.1.1",
"version": "0.1.2",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
Expand Down

0 comments on commit 3d4c59c

Please sign in to comment.