Skip to content

Commit

Permalink
optimizes artifact flow
Browse files Browse the repository at this point in the history
  • Loading branch information
WhosMyName committed Feb 23, 2023
1 parent 764f6fd commit d103485
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,21 @@ jobs:
needs: build
steps:

# download the artifacts from github
- name: Download Artifacts
uses: actions/download-artifact@v3
with:
path: .

# copy all files one level up
- name: Copy Artifacts
run: mv */* .

# delete all empty folders
- name: Clean folders
run: find . -empty -type d -delete

# display results
- name: Print Artifacts
run: ls -lah

Expand Down

0 comments on commit d103485

Please sign in to comment.