Skip to content

Commit

Permalink
ci: fix artifact uploading
Browse files Browse the repository at this point in the history
  • Loading branch information
mikonse committed Jan 3, 2025
1 parent 4807021 commit a182f89
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/push_on_master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,13 @@ jobs:
"${{ matrix.distro }}"
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
ARTIFACT_NAME=${{ matrix.distro }}
ARTIFACT_NAME=${ARTIFACT_NAME//:} # replace all colons
echo "ARTIFACT_NAME=${ARTIFACT_NAME}" >> $GITHUB_ENV
- name: Upload debs as artifacts
uses: actions/upload-artifact@v4
with:
name: debs-${{ matrix.distro }}
name: debs-${{ env.ARTIFACT_NAME }}
path: debs/*

deploy-demo:
Expand Down

0 comments on commit a182f89

Please sign in to comment.