Skip to content

Commit

Permalink
Moving packages out of nested folders (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
intuibase authored Jun 21, 2024
1 parent cd7a945 commit d71b4b5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,13 @@ jobs:
with:
pattern: packages-*
path: ${{ env.BUILD_PACKAGES }}
- run: ls -R ${{ env.BUILD_PACKAGES }}
- name: Moving packages out of folders
run: |
pushd ${{ env.BUILD_PACKAGES }}
find . -mindepth 2 -type f -exec mv -t . {} +
find . -mindepth 1 -maxdepth 1 -type d -exec rm -r {} +
popd
ls -R ${{ env.BUILD_PACKAGES }}
- name: generate build provenance
uses: actions/attest-build-provenance@49df96e17e918a15956db358890b08e61c704919 # v1.2.0
with:
Expand Down

0 comments on commit d71b4b5

Please sign in to comment.