From ef0e611e52a75981ffb493ce9a513c3aa63b1f6f Mon Sep 17 00:00:00 2001 From: Otto Winter Date: Wed, 15 Jul 2020 22:05:00 +0200 Subject: [PATCH] GitHub Actions Expression Syntax Needs Single Quotes See also https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions\#literals --- .github/workflows/release-dev.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-dev.yml b/.github/workflows/release-dev.yml index 7187848217..896b6cddb4 100644 --- a/.github/workflows/release-dev.yml +++ b/.github/workflows/release-dev.yml @@ -172,7 +172,7 @@ jobs: deploy-docker: name: Build and publish docker containers - if: github.repository == "esphome/esphome" + if: github.repository == 'esphome/esphome' runs-on: ubuntu-latest needs: [lint-clang-format, lint-clang-tidy, lint-python, test, pytest] strategy: @@ -228,7 +228,7 @@ jobs: deploy-docker-manifest: - if: github.repository == "esphome/esphome" + if: github.repository == 'esphome/esphome' runs-on: ubuntu-latest needs: [deploy-docker] steps: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 955af16b14..651064047a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -170,7 +170,7 @@ jobs: deploy-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] runs-on: ubuntu-latest steps: @@ -193,7 +193,7 @@ jobs: deploy-docker: name: Build and publish docker containers - if: github.repository == "esphome/esphome" + if: github.repository == 'esphome/esphome' runs-on: ubuntu-latest needs: [lint-clang-format, lint-clang-tidy, lint-python, test, pytest] strategy: @@ -257,7 +257,7 @@ jobs: docker push "${BUILD_TO}:latest" deploy-docker-manifest: - if: github.repository == "esphome/esphome" + if: github.repository == 'esphome/esphome' runs-on: ubuntu-latest needs: [deploy-docker] steps: