ddd
Some checks failed
Release / build (, amd64, darwin) (push) Successful in 49s
Release / build (, amd64, linux) (push) Successful in 55s
Release / build (, arm64, darwin) (push) Successful in 54s
Release / build (, arm64, linux) (push) Successful in 54s
Release / build (.exe, amd64, windows) (push) Failing after 45s
Release / release (push) Has been skipped
Some checks failed
Release / build (, amd64, darwin) (push) Successful in 49s
Release / build (, amd64, linux) (push) Successful in 55s
Release / build (, arm64, darwin) (push) Successful in 54s
Release / build (, arm64, linux) (push) Successful in 54s
Release / build (.exe, amd64, windows) (push) Failing after 45s
Release / release (push) Has been skipped
This commit is contained in:
@@ -124,7 +124,19 @@ jobs:
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
path: dist/
|
||||
merge-multiple: true
|
||||
# ← sin merge-multiple, quedan en subdirectorios:
|
||||
# dist/linux-amd64/claudia-docs-linux-amd64.tar.gz
|
||||
# dist/windows-amd64/claudia-docs-windows-amd64.zip
|
||||
# etc.
|
||||
|
||||
- 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
|
||||
ls -lh dist/
|
||||
|
||||
- name: Generate changelog
|
||||
run: |
|
||||
@@ -142,7 +154,7 @@ jobs:
|
||||
- name: Generate checksums
|
||||
run: |
|
||||
cd dist
|
||||
sha256sum * > checksums.txt
|
||||
sha256sum *.tar.gz *.zip > checksums.txt
|
||||
cat checksums.txt
|
||||
|
||||
- name: Generate install script
|
||||
|
||||
Reference in New Issue
Block a user