From 318a1e32f417e60c23bd63b795bf9b0e77587029 Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Mon, 26 Feb 2024 10:14:52 +0100 Subject: [PATCH 1/2] Add schedule for dev build --- .github/workflows/build_restreamer-ui_dev.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build_restreamer-ui_dev.yaml b/.github/workflows/build_restreamer-ui_dev.yaml index ae571a9..6da05e2 100644 --- a/.github/workflows/build_restreamer-ui_dev.yaml +++ b/.github/workflows/build_restreamer-ui_dev.yaml @@ -3,6 +3,8 @@ name: 'Build dev restreamer-ui' on: workflow_dispatch: workflow_call: + schedule: + - cron: '37 4 * * *' push: branches: - dev From 487899f9345cfa3963fe97a47825a10c95afbd3d Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Tue, 27 Feb 2024 11:24:00 +0100 Subject: [PATCH 2/2] Fix checking out correct branch --- .github/workflows/build_restreamer-ui_dev.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build_restreamer-ui_dev.yaml b/.github/workflows/build_restreamer-ui_dev.yaml index 6da05e2..d900de7 100644 --- a/.github/workflows/build_restreamer-ui_dev.yaml +++ b/.github/workflows/build_restreamer-ui_dev.yaml @@ -15,6 +15,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + ref: dev - name: Set up Node.js uses: actions/setup-node@v4