Change to forgejo.

This commit is contained in:
jupfi 2025-05-01 16:22:08 +02:00
parent fd20542c57
commit 77be096c1b
2 changed files with 11 additions and 14 deletions

View file

@ -15,30 +15,27 @@ jobs:
# uses: ./.github/workflows/ubuntu-python-package.yml # use the callable tests job to run tests
deploy:
runs-on: ubuntu-latest
runs-on: docker
container:
image: node:22-bookworm
# needs: [test]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.11"
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
python -m pip install --upgrade pip
apt update
apt install -y python3 python3-venv python3-pip
- name: Publish to PyPI
run: |
python -m venv venv
python3 -m venv venv
. ./venv/bin/activate
python3 -m pip install --upgrade pip
pip install -U twine build
python -m build .
python -m twine upload --repository pypi --username __token__ --password ${{ secrets.PYPI }} dist/*
env:
PYPI: ${{ secrets.PYPI }}
PYPI: ${{ secrets.PYPI }}

View file

@ -46,8 +46,8 @@ convention = "google"
[project.urls]
"Homepage" = "https://nqrduck.cool"
"Bug Tracker" = "https://github.com/nqrduck/nqr-blochsimulator/issues"
"Source Code" = "https://github.com/nqrduck/nqrduck-blochsimulator"
"Bug Tracker" = "https://git.private.coffee/nqrduck/nqr-blochsimulator/issues"
"Source Code" = "https://git.private.coffee/nqrduck/nqrduck-blochsimulator"
[tool.hatch.build.targets.wheel]
packages = ["src/nqr_blochsimulator"]