Skip to content

Commit ffd99aa

Browse files
dnmsupinodn
authored andcommitted
fixup: actionlint/yamllint - explicit -- before glob, add yaml doc start
1 parent 00f1762 commit ffd99aa

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: Release
23

34
# Build kne_cli binaries for linux + darwin (amd64 + arm64) and attach them
@@ -74,7 +75,7 @@ jobs:
7475
rm -rf "${out_dir}"
7576
done
7677
77-
( cd dist && sha256sum *.tar.gz > SHA256SUMS )
78+
( cd dist && sha256sum -- *.tar.gz > SHA256SUMS )
7879
ls -lh dist/
7980
echo "---"
8081
cat dist/SHA256SUMS

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ dist:
6262
tar -C dist -czf "dist/kne_$(TAG)_$${os}_$${arch}.tar.gz" "$$(basename $$out)"; \
6363
rm -rf "$$out"; \
6464
done; \
65-
( cd dist && sha256sum *.tar.gz > SHA256SUMS )
65+
( cd dist && sha256sum -- *.tar.gz > SHA256SUMS )
6666
@ls -lh dist/

0 commit comments

Comments
 (0)