From 13c6666883e6eea35bc28dceb235b7b75400c9cb Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Fri, 8 Sep 2023 21:29:11 +0000 Subject: [PATCH] feat: test upload artifact --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bf82969559..d5075f1376 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -38,11 +38,11 @@ jobs: with: context: . push: false - tags: $TAG + tags: ${{ env.TAG }} load: true cache-from: type=gha cache-to: type=gha,mode=max - outputs: type=docker,dest=/tmp/$TAG.tar + outputs: type=docker,dest=/tmp/${{ env.TAG }}.tar build-args: | DEBUG=false TESTING=true @@ -51,8 +51,8 @@ jobs: - name: Upload Docker Image uses: actions/upload-artifact@v3 with: - name: $TAG - path: /tmp/$TAG.tar + name: ${{ env.TAG }} + path: /tmp/${{ env.TAG }}.tar # - name: Start Appwrite