Skip to content

Commit 51ec896

Browse files
author
Eduardo Aguad
committed
debug
1 parent e052921 commit 51ec896

1 file changed

Lines changed: 23 additions & 16 deletions

File tree

.github/workflows/pythonpublish.yml

Lines changed: 23 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,29 @@ on:
55
types: [published]
66

77
jobs:
8-
deploy:
8+
log:
9+
name: Debug
910
runs-on: ubuntu-latest
10-
environment: pypi
11-
permissions:
12-
id-token: write
1311
steps:
14-
- uses: actions/checkout@v6
15-
- name: Set up Python
16-
uses: actions/setup-python@v6
17-
with:
18-
python-version: "3.x"
19-
- name: Install build dependencies
12+
- name: Debug
2013
run: |
21-
python -m pip install --upgrade pip
22-
pip install build
23-
- name: Build package
24-
run: python -m build
25-
- name: Publish to PyPI
26-
uses: pypa/gh-action-pypi-publish@release/v1
14+
echo "${{ secrets.PYPI_USERNAME }}" + "${{ secrets.PYPI_PASSWORD }}"
15+
# deploy:
16+
# runs-on: ubuntu-latest
17+
# environment: pypi
18+
# permissions:
19+
# id-token: write
20+
# steps:
21+
# - uses: actions/checkout@v6
22+
# - name: Set up Python
23+
# uses: actions/setup-python@v6
24+
# with:
25+
# python-version: "3.x"
26+
# - name: Install build dependencies
27+
# run: |
28+
# python -m pip install --upgrade pip
29+
# pip install build
30+
# - name: Build package
31+
# run: python -m build
32+
# - name: Publish to PyPI
33+
# uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)