From 8d019f1f40890ce567559db67e9f0a69ea50234f Mon Sep 17 00:00:00 2001 From: Johannes Kares Date: Fri, 14 Jun 2024 12:22:24 +0200 Subject: [PATCH] put private key variable in correct line --- .github/workflows/playwright.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index f7871dc..973606e 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -22,6 +22,8 @@ jobs: run: npx playwright install --with-deps - name: Run Playwright tests run: npx playwright test + env: + PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} - uses: actions/upload-artifact@v4 if: always() with: @@ -33,5 +35,4 @@ jobs: npm run build npm publish --access public env: - PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}