ci: use gh CLI to download artifact instead of third party action

This commit is contained in:
iTrooz
2026-01-06 08:58:50 +01:00
parent 90d8e03f2c
commit 8272ebf68f

View File

@@ -1250,12 +1250,11 @@ jobs:
mkdir -p out/nightly
docker buildx build . -f dist/web/Dockerfile --progress=plain --build-arg 'JOBS=4' --output out/nightly --target raw
- name: ⬇️ Download Release
- name: ⬇️ Download Release artifact
if: ${{ github.event.repository.fork == false }}
uses: robinraju/release-downloader@v1
with:
latest: true
fileName: 'imhex-*-Web.zip'
env:
GH_TOKEN: ${{ github.token }}
run: gh --repo $GITHUB_REPOSITORY release download --pattern "imhex-*-Web.zip"
- name: 🔨 Fix permissions
if: ${{ github.event.repository.fork == false }}