From 3f9e1381b688e8450a0735b59278d557697cff36 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Wed, 1 May 2024 21:28:02 -0600 Subject: [PATCH] chore: use refname instead of base ref --- .github/workflows/pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 3d14d6c2..51e36ede 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -77,5 +77,5 @@ jobs: run: | chmod +x ./docker/build.sh chmod +x ./docker/push.sh - ./docker/build.sh ${{ github.base_ref == 'canary' && 'canary' || '' }} - ./docker/push.sh ${{ github.base_ref == 'canary' && 'canary' || '' }} \ No newline at end of file + ./docker/build.sh ${{ github.ref_name == 'canary' && 'canary' || '' }} + ./docker/push.sh ${{ github.ref_name == 'canary' && 'canary' || '' }} \ No newline at end of file