Change to forgejo.
This commit is contained in:
parent
c47088c5f1
commit
bbd9ed720d
2 changed files with 11 additions and 14 deletions
|
@ -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 }}
|
|
@ -53,8 +53,8 @@ convention = "google"
|
|||
|
||||
[project.urls]
|
||||
"Homepage" = "https://nqrduck.cool"
|
||||
"Bug Tracker" = "https://github.com/nqrduck/quackseq-limenqr/issues"
|
||||
"Source Code" = "https://github.com/nqrduck/quackseq-limenqr"
|
||||
"Bug Tracker" = "https://git.private.coffee/nqrduck/quackseq-limenqr/issues"
|
||||
"Source Code" = "https://git.private.coffee/nqrduck/quackseq-limenqr"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/quackseq_limenqr"]
|
Loading…
Add table
Add a link
Reference in a new issue