feat: add desktop repo (#1071)

This commit is contained in:
Mo
2022-06-07 11:52:15 -05:00
committed by GitHub
parent 0bb12db948
commit 0b7ce82aaa
135 changed files with 17821 additions and 180 deletions

27
.github/workflows/desktop.dev.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Dev
on:
push:
branches:
- develop
paths:
- packages/desktop/**
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./packages/desktop
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn setup
- run: node scripts/build.mjs appimage-x64
- uses: actions/upload-artifact@v2
with:
name: 'AppImage'
path: dist/*.AppImage

View File

@@ -6,7 +6,7 @@ jobs:
- name: git-sync
uses: wei/git-sync@v3
with:
source_repo: "standardnotes/web"
source_repo: "standardnotes/app"
source_branch: "refs/remotes/source/*"
destination_repo: "standardnotes/private-web"
destination_branch: "refs/heads/*"

View File

@@ -3,6 +3,9 @@ name: Beta
on:
push:
branches: [ beta/* ]
paths:
- packages/web-server/**
- packages/web/**
workflow_dispatch:
jobs:

View File

@@ -8,8 +8,8 @@ on:
push:
branches: [ develop ]
paths:
- packages/web-server
- packages/web
- packages/web-server/**
- packages/web/**
workflow_dispatch:
jobs:

View File

@@ -8,8 +8,8 @@ on:
push:
branches: [ main ]
paths:
- packages/web-server
- packages/web
- packages/web-server/**
- packages/web/**
jobs:
test: