Skip to content

Commit

Permalink
Workflows beta.yml changed
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaliypopel committed Sep 18, 2024
1 parent 32c0c66 commit cd54fc3
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,29 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
python-version: '3.10'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
pip install -r requirements.txt
- name: Build package
run: python -m build

- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}

- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: dist-files
path: dist/*

0 comments on commit cd54fc3

Please sign in to comment.