From 313f9651a77333ead205414bf76c75efacafbad2 Mon Sep 17 00:00:00 2001 From: Justin Poehnelt Date: Fri, 17 Jan 2025 12:29:59 -0700 Subject: [PATCH] build: use env instead of with for push to gh-pages action --- .github/workflows/docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 0902c50..d4dff35 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -33,7 +33,7 @@ jobs: # only main - uses: s0/git-publish-subdir-action@61eb9e6420447e7cbf010f7cce37103665c46bfa if: github.ref == 'refs/heads/main' - with: + env: REPO: self BRANCH: gh-pages FOLDER: storybook-static @@ -42,7 +42,7 @@ jobs: # only tags - uses: s0/git-publish-subdir-action@61eb9e6420447e7cbf010f7cce37103665c46bfa if: github.ref == 'refs/tags/*' - with: + env: REPO: self BRANCH: gh-pages FOLDER: storybook-static