We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
uv build
I'm building a Python package, and I need to add a release workflow, with a version tag too.
name: Publish to PyPI on: push: tags: - "v*" jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Install uv uses: astral-sh/setup-uv@v3 - name: Set up Python run: uv python install - name: Install dependencies run: uv sync - name: Build and publish run: | uv build uv publish --token ${{ secrets.PYPI_API_TOKEN }}
I basically need the equivalent of this, poetry version $(git describe --tags --abbrev=0)
poetry version $(git describe --tags --abbrev=0)
The text was updated successfully, but these errors were encountered:
Like, you need to extract the current project version into an environment variable?
Sorry, something went wrong.
I need to set a build version for my package
You're looking for #6298, we don't support this yet but you can track it there.
No branches or pull requests
I'm building a Python package, and I need to add a release workflow, with a version tag too.
I basically need the equivalent of this,
poetry version $(git describe --tags --abbrev=0)
The text was updated successfully, but these errors were encountered: