mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-30 11:32:04 +03:00
14 lines
192 B
YAML
14 lines
192 B
YAML
name: "Nightly build"
|
|
|
|
on:
|
|
workflow_dispatch: {}
|
|
schedule:
|
|
# every day at 3am
|
|
- cron: '0 3 * * *'
|
|
|
|
jobs:
|
|
noop:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "Success!"
|