From b5f266f0b5d3df4147f53ff0151fbafc2718cabe Mon Sep 17 00:00:00 2001 From: Victor Sollerhed Date: Tue, 2 Jun 2020 16:52:33 +0200 Subject: [PATCH] Deploy action: fix typo (task -> environment) --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 726c36f..8c4e701 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,7 +17,7 @@ jobs: - name: 'Deploy ${{ github.event.deployment.environment }}' run: | echo "task - ${{ github.event.deployment.task }}" - echo "environment - ${{ github.event.deployment.task }}" + echo "environment - ${{ github.event.deployment.environment }}" echo "payload - ${{ github.event.deployment.payload }}" - name: 'Deployment success'