From 446acf80f89322a548d6d098c0504a1c58dc0fc8 Mon Sep 17 00:00:00 2001 From: tczekajlo Date: Mon, 12 Apr 2021 13:18:58 +0200 Subject: [PATCH] Use secrets instead of env variable --- .github/workflows/continuous-integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index eec84f86e..e82dc7132 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -253,7 +253,7 @@ jobs: - name: Login to Docker Hub Registry 🔢 if: github.event_name == 'push' && env.IS_TAG_BUILD == 'true' && github.repository == 'RasaHQ/rasa-sdk' - run: echo ${{ secrets.DOCKER_HUB_PASSWORD }} | docker login -u ${{ env.DOCKER_HUB_USERNAME }} --password-stdin || true + run: echo ${{ secrets.DOCKER_HUB_PASSWORD }} | docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin || true - name: Push Docker image 📦 if: github.event_name == 'push' && env.IS_TAG_BUILD == 'true' && github.repository == 'RasaHQ/rasa-sdk'