mirror of
https://github.com/esphome/esphome.git
synced 2024-12-22 05:24:53 +01:00
GitHub Actions Expression Syntax Needs Single Quotes
See also https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions\#literals
This commit is contained in:
parent
d58d0e89c7
commit
ef0e611e52
2 changed files with 5 additions and 5 deletions
4
.github/workflows/release-dev.yml
vendored
4
.github/workflows/release-dev.yml
vendored
|
@ -172,7 +172,7 @@ jobs:
|
||||||
|
|
||||||
deploy-docker:
|
deploy-docker:
|
||||||
name: Build and publish docker containers
|
name: Build and publish docker containers
|
||||||
if: github.repository == "esphome/esphome"
|
if: github.repository == 'esphome/esphome'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [lint-clang-format, lint-clang-tidy, lint-python, test, pytest]
|
needs: [lint-clang-format, lint-clang-tidy, lint-python, test, pytest]
|
||||||
strategy:
|
strategy:
|
||||||
|
@ -228,7 +228,7 @@ jobs:
|
||||||
|
|
||||||
|
|
||||||
deploy-docker-manifest:
|
deploy-docker-manifest:
|
||||||
if: github.repository == "esphome/esphome"
|
if: github.repository == 'esphome/esphome'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [deploy-docker]
|
needs: [deploy-docker]
|
||||||
steps:
|
steps:
|
||||||
|
|
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
@ -170,7 +170,7 @@ jobs:
|
||||||
|
|
||||||
deploy-pypi:
|
deploy-pypi:
|
||||||
name: Build and publish to PyPi
|
name: Build and publish to PyPi
|
||||||
if: github.repository == "esphome/esphome"
|
if: github.repository == 'esphome/esphome'
|
||||||
needs: [lint-clang-format, lint-clang-tidy, lint-python, test, pytest]
|
needs: [lint-clang-format, lint-clang-tidy, lint-python, test, pytest]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
@ -193,7 +193,7 @@ jobs:
|
||||||
|
|
||||||
deploy-docker:
|
deploy-docker:
|
||||||
name: Build and publish docker containers
|
name: Build and publish docker containers
|
||||||
if: github.repository == "esphome/esphome"
|
if: github.repository == 'esphome/esphome'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [lint-clang-format, lint-clang-tidy, lint-python, test, pytest]
|
needs: [lint-clang-format, lint-clang-tidy, lint-python, test, pytest]
|
||||||
strategy:
|
strategy:
|
||||||
|
@ -257,7 +257,7 @@ jobs:
|
||||||
docker push "${BUILD_TO}:latest"
|
docker push "${BUILD_TO}:latest"
|
||||||
|
|
||||||
deploy-docker-manifest:
|
deploy-docker-manifest:
|
||||||
if: github.repository == "esphome/esphome"
|
if: github.repository == 'esphome/esphome'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [deploy-docker]
|
needs: [deploy-docker]
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in a new issue