From 014f80f5e67e8fdae3b803f4af8b6bb0ea4996bb Mon Sep 17 00:00:00 2001 From: Kunal Nagar Date: Tue, 14 Sep 2021 23:47:28 -0400 Subject: [PATCH] fix: Move artifacts out of folder --- .github/workflows/cd.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 420615c..3168db6 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -15,10 +15,16 @@ jobs: uses: dawidd6/action-download-artifact@v2 with: workflow: ci.yml + - name: Move artifacts to current working directory + run: | + mv artifact/* . + rm -rf artifact - name: Upload test coverage uses: codecov/codecov-action@v1 - name: Install dependencies - run: yarn install --frozen-lockfile + run: | + ls -al + yarn install --frozen-lockfile - name: Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}