Skip to content

fix sidu.py, there was an error that i put it in while i was debugging #39

fix sidu.py, there was an error that i put it in while i was debugging

fix sidu.py, there was an error that i put it in while i was debugging #39

name: Upload Python Package
on:
release:
types: [published]
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/pytorch-sidu/
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install -r requirements.txt
pip install build
- name: Build package
run: python -m build
- name: Run tests
run: python -m pytest tests/
- name: Deploy docs
uses: mhausenblas/mkdocs-deploy-gh-pages@master
env:

Check failure on line 35 in .github/workflows/python-publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/python-publish.yml

Invalid workflow file

You have an error in your yaml syntax on line 35
GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }}
CUSTOM_DOMAIN: pytorch-sidu.github.io
CONFIG_FILE: mkdocs.yml
EXTRA_PACKAGES: build-base
# GITHUB_DOMAIN: github.myenterprise.com
REQUIREMENTS: requirements.txt
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip-existing: true