From 71dfa18727fd617c3324fb0418175e341317edbf Mon Sep 17 00:00:00 2001 From: noahtalerman <47070608+noahtalerman@users.noreply.github.com> Date: Fri, 4 Dec 2020 16:19:04 -0500 Subject: [PATCH] Fix for deploy-fleet-website GitHub action. (#99) Fourth attempt to limit the "Deploy Fleet Website" workflow to only the fleetdm/fleet repository. Add the $ character to the $GITHUB_REPOSITORY env variable. --- .github/workflows/deploy-fleet-website.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-fleet-website.yml b/.github/workflows/deploy-fleet-website.yml index aa375e919e..b61c842014 100644 --- a/.github/workflows/deploy-fleet-website.yml +++ b/.github/workflows/deploy-fleet-website.yml @@ -6,7 +6,7 @@ on: jobs: build: - if: GITHUB_REPOSITORY == 'fleetdm/fleet' + if: $GITHUB_REPOSITORY == 'fleetdm/fleet' runs-on: ubuntu-latest