From b7da4dc68fccfd404739da1cc5fd24a90a9c3b2e Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 19 Jul 2022 21:11:21 -0700 Subject: [PATCH] Stringify Python version to use 3.10 vs 3.1 --- .github/workflows/nightly.yaml | 2 +- .github/workflows/release.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index c130b4ae91..516e8c6704 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -6,7 +6,7 @@ on: - cron: "0 1 * * *" env: - PYTHON_VERSION: 3.10 + PYTHON_VERSION: "3.10" NODE_VERSION: 16 NODE_OPTIONS: --max_old_space_size=6144 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e9cb8fdf74..ed017d1744 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -6,7 +6,7 @@ on: - published env: - PYTHON_VERSION: 3.10 + PYTHON_VERSION: "3.10" NODE_VERSION: 16 NODE_OPTIONS: --max_old_space_size=6144 @@ -21,7 +21,7 @@ jobs: name: Release runs-on: ubuntu-latest permissions: - contents: write # Required to upload release assets + contents: write # Required to upload release assets steps: - name: Checkout the repository uses: actions/checkout@v3