From f6c491498bd463468099f7d4cf559638aaa23b9c Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Fri, 19 Jul 2024 11:16:15 -0700 Subject: [PATCH] Fix checkout --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index be8a3808..2bd22432 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,7 +4,7 @@ on: tags: [ v* ] env: - YAAK_PLUGINS_DIR: ./checkout/plugins + YAAK_PLUGINS_DIR: checkout/plugins jobs: build-artifacts: @@ -33,7 +33,7 @@ jobs: uses: actions/checkout@v4 with: repository: yaakapp/plugins - path: $YAAK_PLUGINS_DIR + path: ${{ env.YAAK_PLUGINS_DIR }} - name: setup node uses: actions/setup-node@v4