We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c1664e commit bb71dfaCopy full SHA for bb71dfa
.github/workflows/release.yml
@@ -55,8 +55,8 @@ jobs:
55
# Create dist directory
56
mkdir -p dist
57
58
- # Build package using the container we just built
59
- DOCKER_TAG=$(echo "${{ steps.meta-backend.outputs.tags }}" | cut -d' ' -f1)
+ # Build package using the container we just built - use first tag
+ DOCKER_TAG=$(echo "${{ steps.meta-backend.outputs.tags }}" | head -n1)
60
docker run --rm -v "$(pwd)/dist:/dist" "$DOCKER_TAG" sh -c "cd /pyspur/backend && uv build && cp dist/* /dist/"
61
62
- name: Publish package to PyPI
0 commit comments