mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-24 04:12:20 +08:00
97aeee7172
* Drop third party lib repos * Now all vcpkg dependencies are declared in vcpkg.json * Implement vcpkg binary caching in Github Actions Signed-off-by: Vasyl Gello <vasek.gello@gmail.com>
16 lines
294 B
YAML
16 lines
294 B
YAML
name: Flutter Nightly Build
|
|
|
|
on:
|
|
schedule:
|
|
# schedule build every night
|
|
- cron: "0 0 * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
run-flutter-nightly-build:
|
|
uses: ./.github/workflows/flutter-build.yml
|
|
secrets: inherit
|
|
with:
|
|
upload-artifact: true
|
|
upload-tag: "nightly"
|