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 @@ -44,15 +44,15 @@
runs-on: ubuntu-latest
steps:
- name: Download all Artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: artifacts
path: artifacts
- name: Set release_tag
run: |

Check warning on line 52 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:41: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/release.yml:52:9: shellcheck reported issue in this script: SC2086:info:1:41: Double quote to prevent globbing and word splitting [shellcheck]

Check notice on line 52 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release.yml#L52

shellcheck reported issue in this script: SC2086:info:1:41: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
i:.github/workflows/release.yml:52:9: shellcheck reported issue in this script: SC2086:info:1:41: Double quote to prevent globbing and word splitting [shellcheck]
echo "RELEASE_TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Consolidate Artifacts
run: |

Check warning on line 55 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2035:info:7:33: Use ./*glob* or -- *glob* so names with dashes won't become options [shellcheck] Raw Output: i:.github/workflows/release.yml:55:9: shellcheck reported issue in this script: SC2035:info:7:33: Use ./*glob* or -- *glob* so names with dashes won't become options [shellcheck]

Check warning on line 55 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:5:110: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/release.yml:55:9: shellcheck reported issue in this script: SC2086:info:5:110: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 55 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:5:46: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/release.yml:55:9: shellcheck reported issue in this script: SC2086:info:5:46: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 55 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:4:46: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/release.yml:55:9: shellcheck reported issue in this script: SC2086:info:4:46: Double quote to prevent globbing and word splitting [shellcheck]

Check notice on line 55 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release.yml#L55

shellcheck reported issue in this script: SC2086:info:4:46: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
i:.github/workflows/release.yml:55:9: shellcheck reported issue in this script: SC2086:info:4:46: Double quote to prevent globbing and word splitting [shellcheck]

Check notice on line 55 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release.yml#L55

shellcheck reported issue in this script: SC2086:info:5:46: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
i:.github/workflows/release.yml:55:9: shellcheck reported issue in this script: SC2086:info:5:46: Double quote to prevent globbing and word splitting [shellcheck]

Check notice on line 55 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release.yml#L55

shellcheck reported issue in this script: SC2086:info:5:110: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
i:.github/workflows/release.yml:55:9: shellcheck reported issue in this script: SC2086:info:5:110: Double quote to prevent globbing and word splitting [shellcheck]

Check notice on line 55 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/release.yml#L55

shellcheck reported issue in this script: SC2035:info:7:33: Use ./*glob* or -- *glob* so names with dashes won't become options [shellcheck]
Raw output
i:.github/workflows/release.yml:55:9: shellcheck reported issue in this script: SC2035:info:7:33: Use ./*glob* or -- *glob* so names with dashes won't become options [shellcheck]
mkdir -p final-artifacts
for libc in glibc; do
mkdir -p "packages/netdata-ebpf-co-re-${libc}-${RELEASE_TAG}"
Expand Down
Loading