syncthing/.github/workflows/trigger-nightly.yaml

22 lines
444 B
YAML
Raw Normal View History

2023-05-01 09:30:16 +02:00
name: Trigger nightly build & release
on:
workflow_dispatch:
schedule:
# Run nightly build at 01:00 UTC
- cron: '00 01 * * *'
jobs:
trigger-nightly:
runs-on: ubuntu-latest
name: Push to release-nightly to trigger build
steps:
2023-09-05 09:52:19 +02:00
- uses: actions/checkout@v4
2023-05-01 09:30:16 +02:00
with:
token: ${{ secrets.ACTIONS_GITHUB_TOKEN }}
fetch-depth: 0
- run: |
git push origin main:release-nightly