3 Commits

Author SHA1 Message Date
cad1b25c03 aaa
Some checks failed
Release / build (, amd64, darwin) (push) Successful in 54s
Release / build (, amd64, linux) (push) Successful in 55s
Release / build (, arm64, darwin) (push) Successful in 51s
Release / build (, arm64, linux) (push) Successful in 57s
Release / release (push) Failing after 18s
2026-03-31 10:32:30 -03:00
88a659fb03 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
2026-03-31 10:09:13 -03:00
b31d08c35d hhh
Some checks failed
Release / build (, amd64, darwin) (push) Successful in 49s
Release / build (, amd64, linux) (push) Successful in 51s
Release / build (, arm64, darwin) (push) Successful in 57s
Release / build (, arm64, linux) (push) Successful in 59s
Release / release (push) Failing after 33s
2026-03-31 03:36:31 -03:00

View File

@@ -28,9 +28,6 @@ jobs:
- goos: linux - goos: linux
goarch: arm64 goarch: arm64
ext: '' ext: ''
- goos: windows
goarch: amd64
ext: '.exe'
- goos: darwin - goos: darwin
goarch: amd64 goarch: amd64
ext: '' ext: ''
@@ -131,25 +128,21 @@ jobs:
- name: Mover artefactos a dist/ - name: Mover artefactos a dist/
run: | run: |
find dist/ -mindepth 2 -type f \ # Mover todos los archivos de subdirectorios a dist/
\( -name "*.tar.gz" -o -name "*.zip" \) \ find dist/ -mindepth 2 -type f -exec mv {} dist/ \;
-exec mv {} dist/ \; # Borrar subdirectorios con rm -rf en vez de find -delete
# Eliminar subdirectorios vacíos for dir in dist/*/; do
find dist/ -mindepth 1 -type d -delete rm -rf "$dir"
done
ls -lh dist/ ls -lh dist/
- name: Generate changelog - name: Generate checksums
run: | run: |
PREV_TAG=$(git tag --sort=-version:refname | sed -n '2p') cd dist
if [ -z "$PREV_TAG" ]; then sha256sum *.tar.gz > checksums.txt
echo "# Changes (full history)" > changelog.md # Agregar zips solo si existen
git log --pretty=format:"- %s (%h)" -20 >> changelog.md ls *.zip 2>/dev/null && sha256sum *.zip >> checksums.txt || true
else cat checksums.txt
echo "# Changes since ${PREV_TAG}" > changelog.md
git log "${PREV_TAG}..${{ steps.version.outputs.tag }}" \
--pretty=format:"- %s (%h)" >> changelog.md
fi
cat changelog.md
- name: Generate checksums - name: Generate checksums
run: | run: |