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
I'm attempting to run a testpypi in my CI with the following workflow job step:
- name: Publish to PyPI uses: PyO3/maturin-action@v1 env: MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_TOKEN_TEST }} with: command: upload args: "-r testpypi --skip-existing dist/*"
And the job runs via
/home/runner/work/_temp/01b59811-e59d-4b85-a41e-ca41aefcbc6d/maturin upload --repository --skip-existing ...
Where the arg for -r/--repository is removed. I've used the environment var MATURIN_REPOSITORY to work around for now.
-r
--repository
MATURIN_REPOSITORY
Here is the job that attempted to run https://github.com/npapapietro/liesym/actions/runs/6828779586/job/18573598558 if you'd like to further inspect
The text was updated successfully, but these errors were encountered:
Had the same issue with --repository-url ..., but was able to work around this issue by using --repository-url=...
--repository-url ...
--repository-url=...
Sorry, something went wrong.
I second this, I have been fiddling with multiple features for two hours and --features="xxx xxx xxx" seems to be the only correct method
No branches or pull requests
I'm attempting to run a testpypi in my CI with the following workflow job step:
And the job runs via
Where the arg for
-r
/--repository
is removed. I've used the environment varMATURIN_REPOSITORY
to work around for now.Here is the job that attempted to run https://github.com/npapapietro/liesym/actions/runs/6828779586/job/18573598558 if you'd like to further inspect
The text was updated successfully, but these errors were encountered: