mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-15 21:42:25 +03:00
28 lines
837 B
YAML
28 lines
837 B
YAML
|
name: Release Desktop Automatically
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- 'v[0-9]+.[0-9]+.[0-9]+-canary.[0-9]+'
|
||
|
schedule:
|
||
|
- cron: '0 9 * * *'
|
||
|
|
||
|
jobs:
|
||
|
dispatch-release-desktop:
|
||
|
runs-on: ubuntu-latest
|
||
|
name: Setup Release Desktop
|
||
|
steps:
|
||
|
- name: dispatch desktop release by tag
|
||
|
if: ${{ github.event_name == 'push' }}
|
||
|
uses: benc-uk/workflow-dispatch@v1
|
||
|
with:
|
||
|
workflow: release-desktop.yml
|
||
|
inputs: '{ "build-type": "canary", "is-draft": false, "is-pre-release": true }'
|
||
|
- name: dispatch desktop release by schedule
|
||
|
if: ${{ github.event_name == 'schedule' }}
|
||
|
uses: benc-uk/workflow-dispatch@v1
|
||
|
with:
|
||
|
workflow: release-desktop.yml
|
||
|
inputs: '{ "build-type": "canary", "is-draft": false, "is-pre-release": true }'
|
||
|
ref: canary
|