Skip to content

Commit

Permalink
fix: Move artifacts out of folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Kunal Nagar committed Sep 15, 2021
1 parent 5234b32 commit 014f80f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 014f80f

Please sign in to comment.