Skip to content

Commit

Permalink
Merge pull request #22 from hudsonbrendon/fix/update-dependencies
Browse files Browse the repository at this point in the history
fix: atualiza versões das dependências
  • Loading branch information
hudsonbrendon authored Mar 29, 2024
2 parents 4b08dcb + 9e11bb6 commit 1df9e62
Show file tree
Hide file tree
Showing 2 changed files with 288 additions and 245 deletions.
31 changes: 15 additions & 16 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,21 @@ permissions:

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
- name: Check Package
run: poetry run check
- name: Build Package
run: poetry run build
- name: Publish Package
run: poetry run publish --username=${{ secrets.PYPI_USERNAME }} --password=${{ secrets.PYPI_PASSWORD }}
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
- name: Check Package
run: poetry check
- name: Build Package
run: poetry build
- name: Publish Package
run: poetry publish --username=${{ secrets.PYPI_USERNAME }} --password=${{ secrets.PYPI_PASSWORD }}
Loading

0 comments on commit 1df9e62

Please sign in to comment.