Fix artifact download and extraction steps to correctly reference the TAG variable

This commit is contained in:
2025-10-16 22:05:58 +03:00
parent 9a3877c8dd
commit 0197d2303e
+2 -2
View File
@@ -159,12 +159,12 @@ jobs:
- name: Download linux-zip artifact - name: Download linux-zip artifact
uses: christopherhx/gitea-download-artifact@v4 uses: christopherhx/gitea-download-artifact@v4
with: with:
name: yt-playlist-linux-${TAG}.tar.gz name: yt-playlist-linux-${{TAG}}.tar.gz
- name: Extract linux-zip artifact - name: Extract linux-zip artifact
run: | run: |
set -e set -e
tar -xzf yt-playlist-linux-${TAG}.tar.gz tar -xzf yt-playlist-linux-${{TAG}}.tar.gz
- name: Build Docker image with release tag - name: Build Docker image with release tag
run: docker build ./ -t ${{ env.REGISTRY_URL }}/${{ env.REGISTRY_OWNER }}/${{ env.IMAGE_NAME }}:${{ env.TAG }} run: docker build ./ -t ${{ env.REGISTRY_URL }}/${{ env.REGISTRY_OWNER }}/${{ env.IMAGE_NAME }}:${{ env.TAG }}