From 826577f341bcd0d468e5742c3ae81bef34251ee6 Mon Sep 17 00:00:00 2001 From: Madison Grubb Date: Thu, 5 Jan 2023 14:32:22 -0500 Subject: [PATCH] add install step in publish stage. --- .github/workflows/publish.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 659d9eb1a..cc79ae24f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,6 +27,7 @@ jobs: with: node-version: 16 cache: 'yarn' + - name: Install dependencies run: | yarn -v @@ -45,8 +46,10 @@ jobs: else echo "Unable to bump version successfully." && exit 1 fi + - name: Build run: yarn build + - name: Upload Build Results uses: actions/upload-artifact@v3 with: @@ -74,6 +77,11 @@ jobs: node-version: 16 cache: 'yarn' + - name: Install dependencies + run: | + yarn -v + yarn install --immutable + - name: Download Build Results uses: actions/download-artifact@v3 with: