From 5f9e5828ada694b6088c2350816c28ad18a41a00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C4=8Cerm=C3=A1k?= Date: Fri, 22 Nov 2024 10:01:49 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Fix=20syntax=20for=20acces?= =?UTF-8?q?sing=20secrets=20in=20GitHub=20Actions=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/preview.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/preview.yaml b/.github/workflows/preview.yaml index 7a1ff2a..c85ab0e 100644 --- a/.github/workflows/preview.yaml +++ b/.github/workflows/preview.yaml @@ -6,11 +6,11 @@ on: - dev env: - VERCEL_NAME_EXAMPLE_DEFAULT: ${ secrets.VERCEL_NAME_EXAMPLE_DEFAULT }} - VERCEL_NAME_EXAMPLE_UPGRADE: ${ secrets.VERCEL_NAME_EXAMPLE_UPGRADE }} - VERCEL_SCOPE: ${ secrets.VERCEL_SCOPE }} - VERCEL_TOKEN: ${ secrets.VERCEL_TOKEN }} - SENTRY_AUTH_TOKEN: ${ secrets.SENTRY_AUTH_TOKEN }} + VERCEL_NAME_EXAMPLE_DEFAULT: ${{ secrets.VERCEL_NAME_EXAMPLE_DEFAULT }} + VERCEL_NAME_EXAMPLE_UPGRADE: ${{ secrets.VERCEL_NAME_EXAMPLE_UPGRADE }} + VERCEL_SCOPE: ${{ secrets.VERCEL_SCOPE }} + VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} + SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} jobs: default-example: