aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXe Iaso <me@xeiaso.net>2025-04-03 20:53:32 -0400
committerXe Iaso <me@xeiaso.net>2025-04-03 20:53:32 -0400
commit17297f7135bb563a0171590b46a93f52052ba49d (patch)
treee844ba84b03c9e34c37b6a399b27c767d313aa7e
parentb231a743f7c48938310764ca7d6ebec6252d3bbf (diff)
downloadanubis-17297f7135bb563a0171590b46a93f52052ba49d.tar.xz
anubis-17297f7135bb563a0171590b46a93f52052ba49d.zip
fix security alert
Signed-off-by: Xe Iaso <me@xeiaso.net>
-rw-r--r--.github/workflows/package-builds-stable.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/package-builds-stable.yml b/.github/workflows/package-builds-stable.yml
index 8a99281..2767583 100644
--- a/.github/workflows/package-builds-stable.yml
+++ b/.github/workflows/package-builds-stable.yml
@@ -71,9 +71,11 @@ jobs:
- name: Upload released artifacts
env:
GITHUB_TOKEN: ${{ github.TOKEN }}
+ RELEASE_VERSION: ${{github.event.release.tag_name}}
shell: bash
run: |
+ RELEASE="${RELEASE_VERSION}"
cd var
for file in *; do
- gh release upload '${{github.event.release.tag_name}}' $file
+ gh release upload $RELEASE $file
done \ No newline at end of file