File tree Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
steps :
10
10
- uses : actions/checkout@v3
11
- - name : Set up Python ${{ matrix.python-version }}
12
- uses : actions/setup-python@v3
13
- with :
14
- python-version : ${{ matrix.python-version }}
15
- - name : Install gettext
16
- run : sudo apt-get install gettext -y
17
- - name : Install dependencies
18
- run : python -m pip install --upgrade pip setuptools wheel twine
19
- - name : Build dist packages
20
- run : python setup.py sdist bdist_wheel
21
- - name : Upload packages
22
- run : python -m twine upload dist/*
11
+ - uses : actions/setup-python@v3
12
+ - run : sudo apt-get install gettext -y
13
+ - run : python -m pip install --upgrade pip build wheel twine
14
+ - run : python -m build --sdist --wheel
15
+ - run : python -m twine upload dist/*
23
16
env :
24
17
TWINE_USERNAME : ${{ secrets.TWINE_USERNAME }}
25
18
TWINE_PASSWORD : ${{ secrets.TWINE_PASSWORD }}
You can’t perform that action at this time.
0 commit comments