From 71139a2f32ecada4ffbfb3df21a2de89168093de Mon Sep 17 00:00:00 2001 From: Warren Thompson Date: Mon, 22 May 2023 12:50:23 +0100 Subject: [PATCH 1/2] Update build-main.yaml - remove cron job --- .github/workflows/build-main.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-main.yaml b/.github/workflows/build-main.yaml index 62388270..f819908e 100644 --- a/.github/workflows/build-main.yaml +++ b/.github/workflows/build-main.yaml @@ -37,9 +37,9 @@ on: - 'main' tags: - '**' - schedule: +# schedule: # Build every Sunday (0) at 3:45pm - - cron: '45 15 * * 0' +# - cron: '45 15 * * 0' env: CONDA_ORIGIN: http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh From 419fbd93b64d5270f9d229c4c785a5ad4dd4b1fa Mon Sep 17 00:00:00 2001 From: Warren Thompson Date: Mon, 22 May 2023 12:57:18 +0100 Subject: [PATCH 2/2] Update build-main.yaml - quote Python version Python ver 3.7.10 not being found due to possible parsing error of yaml. Attempt using quotation marks. --- .github/workflows/build-main.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-main.yaml b/.github/workflows/build-main.yaml index f819908e..a47c8a37 100644 --- a/.github/workflows/build-main.yaml +++ b/.github/workflows/build-main.yaml @@ -37,9 +37,9 @@ on: - 'main' tags: - '**' -# schedule: + schedule: # Build every Sunday (0) at 3:45pm -# - cron: '45 15 * * 0' + - cron: '45 15 * * 0' env: CONDA_ORIGIN: http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh @@ -53,7 +53,7 @@ jobs: - name: Setup python uses: actions/setup-python@v2 with: - python-version: 3.7.10 + python-version: '3.7.10' - name: Install conda run: | # Install Miniconda.