Skip to content

Commit 539d5dd

Browse files
authored
Merge pull request #9 from Diaszano/development
Development
2 parents 0c096f2 + 3c29547 commit 539d5dd

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

.github/workflows/published.yaml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Upload Python Package
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
deploy:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Verifica o código
15+
uses: actions/checkout@v3
16+
17+
- name: Configura o Python
18+
uses: actions/setup-python@v4
19+
with:
20+
python-version: ${{ vars.PYTHON_VERSION }}
21+
22+
- name: Instala o Poetry
23+
run: pip install poetry
24+
25+
- name: Configura o Poetry
26+
run: poetry config virtualenvs.create false
27+
28+
- name: Instala as dependências
29+
run: poetry install --no-dev
30+
31+
- name: Build package
32+
run: poetry publish --build
33+
with:
34+
user: __token__
35+
password: ${{ secrets.PYPI_API_TOKEN }}

docs/templates/cards.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ <h5>Início Rápido</h5>
66
</a>
77
</div>
88
<div class="card">
9-
<a href="../01_tutorial" target="_blank">
9+
<a href="./01_tutorial/" target="_blank">
1010
<h5>Tutorial</h5>
1111
<p>Para quem quer aprender mais</p>
1212
</a>
1313
</div>
1414
<div class="card">
15-
<a href="../02_contribua" target="_blank">
15+
<a href="./02_contribua/" target="_blank">
1616
<h5>Quero Contribuir</h5>
1717
<p>Auxilio para novas contribuições</p>
1818
</a>

0 commit comments

Comments
 (0)