mirror of
https://github.com/syncthing/syncthing.git
synced 2025-12-23 22:18:14 -05:00
23 lines
491 B
YAML
23 lines
491 B
YAML
name: Trigger nightly build & release
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# Run nightly build at 01:00 UTC
|
|
- cron: '00 01 * * *'
|
|
|
|
jobs:
|
|
|
|
trigger-nightly:
|
|
if: github.repository_owner == 'syncthing'
|
|
runs-on: ubuntu-latest
|
|
name: Push to release-nightly to trigger build
|
|
steps:
|
|
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
token: ${{ secrets.ACTIONS_GITHUB_TOKEN }}
|
|
fetch-depth: 0
|
|
|
|
- run: |
|
|
git push origin main:release-nightly
|