From e1d76f4bf2f718c25f5a80cd05bbd0821ceed11c Mon Sep 17 00:00:00 2001 From: mauzey1 Date: Tue, 25 Jun 2024 14:39:02 -0700 Subject: [PATCH] Use quotes for Python versions to prevent '3.10' from being read as '3.1' --- .github/workflows/github-actions-demo.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index ff296263..696978a8 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -7,8 +7,8 @@ jobs: name: Deploy nightly strategy: matrix: - os: [macos-14] - python_version: [3.8, 3.9, 3.10, 3.11, 3.12] + os: ['macos-14'] + python_version: ['3.10'] runs-on: ${{ matrix.os }} env: PACKAGE_NAME: cmor