Merge pull request #13235 from home-assistant/fix-builds

Stringify Python version to use 3.10 vs 3.1
This commit is contained in:
Zack Barett 2022-07-19 23:25:39 -05:00 committed by GitHub
commit 1267575f62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ on:
- cron: "0 1 * * *" - cron: "0 1 * * *"
env: env:
PYTHON_VERSION: 3.10 PYTHON_VERSION: "3.10"
NODE_VERSION: 16 NODE_VERSION: 16
NODE_OPTIONS: --max_old_space_size=6144 NODE_OPTIONS: --max_old_space_size=6144

View File

@ -6,7 +6,7 @@ on:
- published - published
env: env:
PYTHON_VERSION: 3.10 PYTHON_VERSION: "3.10"
NODE_VERSION: 16 NODE_VERSION: 16
NODE_OPTIONS: --max_old_space_size=6144 NODE_OPTIONS: --max_old_space_size=6144
@ -21,7 +21,7 @@ jobs:
name: Release name: Release
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
contents: write # Required to upload release assets contents: write # Required to upload release assets
steps: steps:
- name: Checkout the repository - name: Checkout the repository
uses: actions/checkout@v3 uses: actions/checkout@v3