File tree 2 files changed +37
-2
lines changed
2 files changed +37
-2
lines changed Original file line number Diff line number Diff line change
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 }}
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ <h5>Início Rápido</h5>
6
6
</ a >
7
7
</ div >
8
8
< div class ="card ">
9
- < a href =".. /01_tutorial " target ="_blank ">
9
+ < a href ="./01_tutorial/ " target ="_blank ">
10
10
< h5 > Tutorial</ h5 >
11
11
< p > Para quem quer aprender mais</ p >
12
12
</ a >
13
13
</ div >
14
14
< div class ="card ">
15
- < a href =".. /02_contribua " target ="_blank ">
15
+ < a href ="./02_contribua/ " target ="_blank ">
16
16
< h5 > Quero Contribuir</ h5 >
17
17
< p > Auxilio para novas contribuições</ p >
18
18
</ a >
You can’t perform that action at this time.
0 commit comments