Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
zip -r "$archive_name" "logslinter_${{ matrix.goos }}_${{ matrix.goarch }}"

- name: Upload packaged artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: logslinter-${{ matrix.goos }}-${{ matrix.goarch }}
path: |
Expand All @@ -97,7 +97,7 @@
merge-multiple: true

- name: Generate checksums
run: |

Check failure on line 100 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

shellcheck reported issue in this script: SC2035:info:2:20: Use ./*glob* or -- *glob* so names with dashes won't become options

Check failure on line 100 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

shellcheck reported issue in this script: SC2035:info:2:11: Use ./*glob* or -- *glob* so names with dashes won't become options

Check failure on line 100 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

shellcheck reported issue in this script: SC2035:info:2:20: Use ./*glob* or -- *glob* so names with dashes won't become options

Check failure on line 100 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

shellcheck reported issue in this script: SC2035:info:2:11: Use ./*glob* or -- *glob* so names with dashes won't become options
cd dist
sha256sum *.tar.gz *.zip > SHA256SUMS.txt

Expand Down
Loading