From 5c3954dbe9910b978ece562e0df3573c220e2862 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20P=C3=BChringer?= <51900829+puehringer@users.noreply.github.com> Date: Mon, 17 Jun 2024 08:31:19 +0200 Subject: [PATCH] Create build_nightly.yml --- .github/workflows/build_nightly.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/build_nightly.yml diff --git a/.github/workflows/build_nightly.yml b/.github/workflows/build_nightly.yml new file mode 100644 index 0000000..b3cb051 --- /dev/null +++ b/.github/workflows/build_nightly.yml @@ -0,0 +1,26 @@ +name: build nightly + +on: + workflow_dispatch: + schedule: + - cron: '15 1 * * *' + +jobs: + build-main: + uses: datavisyn/github-workflows/.github/workflows/build-node-python.yml@main + secrets: inherit + with: + cypress_enable: true + cypress_run_because_flag: true + cypress_runs_on: "Ubuntu-22.04" + deduplication_id: main + branch: main + build-develop: + uses: datavisyn/github-workflows/.github/workflows/build-node-python.yml@main + secrets: inherit + with: + cypress_enable: true + cypress_run_because_flag: true + cypress_runs_on: "Ubuntu-22.04" + deduplication_id: develop + branch: develop