Skip to content

Commit

Permalink
publish-python-package.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Fabiana Campanari <fabicampanari@gmail.com>
  • Loading branch information
FabianaCampanari authored Jul 4, 2024
1 parent 28539cc commit cbad5f5
Showing 1 changed file with 29 additions and 12 deletions.
41 changes: 29 additions & 12 deletions .github/workflows/publish-python-package.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,35 @@
name: Python package
# Esse fluxo de trabalho usa ações que não são certificadas pelo GitHub.
# São fornecidas por terceiros e regidas por
# termos de serviço, política de privacidade e suporte separados
# online.

on: [push]
# O GitHub recomenda fixar ações em um SHA de commit.
# Para obter uma versão mais recente, você precisará atualizar o SHA.
# Você também pode fazer referência a uma marca ou branch, mas a ação pode ser alterada sem aviso.


name: Upload Python Package

on:
release:
types: [published]

jobs:
build:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.12"]
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.1.0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit cbad5f5

Please sign in to comment.