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 5fbd48f commit 7c1664eCopy full SHA for 7c1664e
.github/workflows/release.yml
@@ -56,7 +56,8 @@ jobs:
56
mkdir -p dist
57
58
# Build package using the container we just built
59
- docker run --rm -v $(pwd)/dist:/dist ${{ steps.meta-backend.outputs.tags }} sh -c "cd /pyspur/backend && uv build && cp dist/* /dist/"
+ DOCKER_TAG=$(echo "${{ steps.meta-backend.outputs.tags }}" | cut -d' ' -f1)
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
63
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments