From 4c8fa84f6f14debb5a55a2117e06952c3be278d7 Mon Sep 17 00:00:00 2001 From: WhenGryphonsFly <84215159+WhenGryphonsFly@users.noreply.github.com> Date: Thu, 17 Aug 2023 19:22:33 -0500 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cf9d3858..28dda65e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,18 +28,18 @@ jobs: # No point in running the following steps if we are not deploying - name: Install to temp dir - if: ${{ env.IS_DEPLOY }} + if: env.IS_DEPLOY shell: bash run: sh install.sh TEMPDIR - name: Create release archive - if: ${{ env.IS_DEPLOY }} + if: env.IS_DEPLOY shell: bash run: tar -C TEMPDIR/tools/agbcc -czf agbcc.tar.gz bin include lib - name: Upload archive uses: actions/upload-artifact@v2 - if: ${{ env.IS_DEPLOY }} + if: env.IS_DEPLOY with: name: agbcc.tar.gz path: agbcc.tar.gz