diff --git a/.github/workflows/desktop.release.prod.yml b/.github/workflows/desktop.release.prod.yml index 4d863c859..4cc68f5a9 100644 --- a/.github/workflows/desktop.release.prod.yml +++ b/.github/workflows/desktop.release.prod.yml @@ -1,10 +1,9 @@ name: Desktop Prod Release on: - create: + push: tags: - - '@standardnotes/desktop@!(*alpha*)' - - '@standardnotes/desktop@!(*beta*)' + - '@standardnotes/desktop@!(*alpha*|*beta*)' workflow_dispatch: jobs: diff --git a/.github/workflows/desktop.release.proto.yml b/.github/workflows/desktop.release.proto.yml deleted file mode 100644 index bd6b83ade..000000000 --- a/.github/workflows/desktop.release.proto.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Desktop Release (Test) - -on: - workflow_dispatch: - -jobs: - Linux: - runs-on: macos-latest - defaults: - run: - working-directory: packages/desktop - steps: - - uses: actions/checkout@v2 - - name: Ruby Setup - uses: ruby/setup-ruby@v1 - - uses: actions/setup-node@v2 - with: - registry-url: 'https://registry.npmjs.org' - - - name: Install Snap Deps - run: | - brew update - brew install snapcraft - - - run: yarn install - - run: yarn build:desktop - - - name: SnapArm64 - run: | - yarn run webpack --config desktop.webpack.prod.js --env snap - yarn run electron-builder --linux snap --arm64 --publish=never - - - name: Upload - uses: actions/upload-artifact@v3.0.0 - with: - name: assets - path: | - packages/desktop/dist/*.snap - packages/desktop/dist/*.AppImage - packages/desktop/dist/*.deb - packages/desktop/dist/*.blockmap - packages/desktop/dist/*.yml - packages/desktop/dist/*.yaml diff --git a/.github/workflows/mobile.release.dev.yml b/.github/workflows/mobile.release.dev.yml index 18a43f6ec..1571c6dcc 100644 --- a/.github/workflows/mobile.release.dev.yml +++ b/.github/workflows/mobile.release.dev.yml @@ -1,9 +1,10 @@ name: Mobile Build Development on: - create: + push: tags: - - '**standardnotes/mobile+(*alpha*|*beta*)' + - '@standardnotes/mobile@[0-9]*.[0-9]*.[0-9]*-alpha.[0-9]*' + - '@standardnotes/mobile@[0-9]*.[0-9]*.[0-9]*-beta.[0-9]*' workflow_dispatch: jobs: diff --git a/.github/workflows/mobile.release.prod.yml b/.github/workflows/mobile.release.prod.yml index 0257e2956..b0ab33811 100644 --- a/.github/workflows/mobile.release.prod.yml +++ b/.github/workflows/mobile.release.prod.yml @@ -1,9 +1,9 @@ name: Mobile Build Production on: - create: + push: tags: - - '**standardnotes/mobile!(*alpha*|*beta*)' + - '@standardnotes/mobile@!(*alpha*|*beta*)' workflow_dispatch: jobs: diff --git a/.github/workflows/web.release.dev.yml b/.github/workflows/web.release.dev.yml index 20a9fa008..43c0102d2 100644 --- a/.github/workflows/web.release.dev.yml +++ b/.github/workflows/web.release.dev.yml @@ -5,9 +5,10 @@ concurrency: cancel-in-progress: true on: - create: + push: tags: - - '**standardnotes/web-server+(*alpha*|*beta*)' + - '@standardnotes/web-server@[0-9]*.[0-9]*.[0-9]*-alpha.[0-9]*' + - '@standardnotes/web-server@[0-9]*.[0-9]*.[0-9]*-beta.[0-9]*' workflow_dispatch: jobs: diff --git a/.github/workflows/web.release.prod.yml b/.github/workflows/web.release.prod.yml index e8f446cd8..0a2bb73b5 100644 --- a/.github/workflows/web.release.prod.yml +++ b/.github/workflows/web.release.prod.yml @@ -5,9 +5,9 @@ concurrency: cancel-in-progress: true on: - create: + push: tags: - - '**standardnotes/web-server!(*alpha*|*beta*)' + - '@standardnotes/web-server@!(*alpha*|*beta*)' jobs: test: diff --git a/packages/desktop/package.json b/packages/desktop/package.json index 26db52024..41aacaa7b 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -3,7 +3,7 @@ "main": "./app/dist/index.js", "version": "3.22.3-alpha.11", "license": "AGPL-3.0-or-later", - "author": "Standard Notes", + "author": "Standard Notes.", "private": true, "repository": { "type": "git", diff --git a/packages/web-server/package.json b/packages/web-server/package.json index 22bb8333b..cd89203fe 100644 --- a/packages/web-server/package.json +++ b/packages/web-server/package.json @@ -3,7 +3,7 @@ "version": "1.2.7-alpha.6", "license": "AGPL-3.0-or-later", "private": true, - "author": "Standard Notes.", + "author": "Standard Notes", "description": "Ruby on Rails web server for hosting the web application", "engines": { "node": ">=12.19.0 <17.0.0"