ssss
Some checks failed
Release / build (, amd64, darwin) (push) Successful in 1m1s
Release / build (, amd64, linux) (push) Successful in 48s
Release / build (, arm64, darwin) (push) Successful in 53s
Release / build (, arm64, linux) (push) Successful in 51s
Release / release (push) Failing after 18s
Some checks failed
Release / build (, amd64, darwin) (push) Successful in 1m1s
Release / build (, amd64, linux) (push) Successful in 48s
Release / build (, arm64, darwin) (push) Successful in 53s
Release / build (, arm64, linux) (push) Successful in 51s
Release / release (push) Failing after 18s
This commit is contained in:
@@ -128,11 +128,12 @@ jobs:
|
||||
|
||||
- name: Mover artefactos a dist/
|
||||
run: |
|
||||
find dist/ -mindepth 2 -type f \
|
||||
\( -name "*.tar.gz" -o -name "*.zip" \) \
|
||||
-exec mv {} dist/ \;
|
||||
# Eliminar subdirectorios vacíos
|
||||
find dist/ -mindepth 1 -type d -delete
|
||||
# Mover todos los archivos de subdirectorios a dist/
|
||||
find dist/ -mindepth 2 -type f -exec mv {} dist/ \;
|
||||
# Borrar subdirectorios con rm -rf en vez de find -delete
|
||||
for dir in dist/*/; do
|
||||
rm -rf "$dir"
|
||||
done
|
||||
ls -lh dist/
|
||||
|
||||
- name: Generate changelog
|
||||
|
||||
Reference in New Issue
Block a user