From 7500919b5d0347220210c368b0195c2b72683c12 Mon Sep 17 00:00:00 2001 From: Kristoffer Andersen Date: Fri, 13 Jan 2023 14:59:06 +0100 Subject: [PATCH] Set to fixed daily release Remove association to every completed CI workflow. High frequency of releases makes it better to keep this at a fixed interval given it's so compute intensive --- .../workflows/ci-ifcopenshell-conda-daily.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-ifcopenshell-conda-daily.yml b/.github/workflows/ci-ifcopenshell-conda-daily.yml index dd36a8edb8..a1640f078f 100644 --- a/.github/workflows/ci-ifcopenshell-conda-daily.yml +++ b/.github/workflows/ci-ifcopenshell-conda-daily.yml @@ -4,10 +4,14 @@ on: push: paths: - .github/workflows/ci-ifcopenshell-conda-daily.yml - workflow_run: - workflows: ["ci"] - types: - - completed + schedule: + # ┌───────────── minute (0 - 59) + # │ ┌───────────── hour (0 - 23) + # │ │ ┌───────────── day of the month (1 - 31) + # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC) + # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT) + # * * * * * + - cron: "49 23 * * *" # 11min before utc midnight every day jobs: activate: @@ -29,16 +33,12 @@ jobs: fail-fast: false matrix: pyver: [ - # { name: py39, distver: '3.9' }, { name: py310, distver: '3.10'}, { name: py311, distver: '3.11'} ] platform: [ { name: Windows, distver: windows-2022, upload: 'true' }, -# { name: Windows, distver: windows-2019, upload: 'true' }, -# { name: Linux, distver: ubuntu-20.04, upload: 'true' }, { name: Linux, distver: ubuntu-22.04, upload: 'true' }, -# { name: macOS, distver: macos-11, upload: 'true' }, { name: macOS, distver: macos-12, upload: 'true' } ] steps: