From edbed10386849c9867cb9d8a8481e85531e8b25f Mon Sep 17 00:00:00 2001 From: Mirko Mollik Date: Mon, 13 May 2024 10:17:19 +0200 Subject: [PATCH] fix: pass correct variables Signed-off-by: Mirko Mollik --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 65ffcf0e..28faba2d 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -30,6 +30,6 @@ jobs: - uses: nrwl/nx-set-shas@v4 - name: Build and push images env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + INPUT_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} INPUT_PUSH: true run: pnpm exec nx affected -t container diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f47fad8..72faee4d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,5 +30,5 @@ jobs: - uses: nrwl/nx-set-shas@v4 - name: Lint, test, build, and container env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + INPUT_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: pnpm exec nx affected -t lint test build container