File tree Expand file tree Collapse file tree 4 files changed +29
-39
lines changed Expand file tree Collapse file tree 4 files changed +29
-39
lines changed Original file line number Diff line number Diff line change 67
67
run : |
68
68
make coverage
69
69
coveralls
70
+
71
+ deploy :
72
+ if : startsWith(github.ref, 'refs/tags/') && github.ref_type == 'tag'
73
+ runs-on : ubuntu-latest
74
+ needs :
75
+ - build
76
+ - coverage
77
+
78
+ steps :
79
+ - name : Checkout repository
80
+ uses : actions/checkout@v3
81
+
82
+ - name : Set up Python
83
+ uses : actions/setup-python@v4
84
+ with :
85
+ python-version : 3.12
86
+
87
+ - name : Install Poetry
88
+ run : |
89
+ python -m pip install --upgrade pip
90
+ pip install poetry
91
+ poetry config http-basic.pypi __token__ ${{ secrets.PYPI_PASSWORD }}
92
+
93
+ - name : Publish to PyPI
94
+ env :
95
+ PYPI_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
96
+ run : make publish
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# pyasice - ASiC-E (BDOC) and XAdES Manipulation Library
2
2
3
3
[ ![ pypi Package] ( https://badge.fury.io/py/pyasice.png )] ( https://badge.fury.io/py/pyasice )
4
- [ ![ Build Status ] ( https://app.travis-ci. com/thorgate/pyasice. svg?branch=main )] ( https://app.travis-ci. com/thorgate/pyasice )
4
+ [ ![ Python CI ] ( https://github. com/thorgate/pyasice/actions/workflows/python-ci.yml/badge. svg )] ( https://github. com/thorgate/pyasice/actions/workflows/python-ci.yml )
5
5
[ ![ Coverage Status] ( https://coveralls.io/repos/github/thorgate/pyasice/badge.svg?branch=main )] ( https://coveralls.io/github/thorgate/pyasice?branch=main )
6
6
7
7
The ` pyasice ` library is designed to:
Original file line number Diff line number Diff line change 18
18
# simply: except pyasice.Error
19
19
Error = PyAsiceError
20
20
21
- __version__ = "1.1 .0"
21
+ __version__ = "1.2 .0"
You can’t perform that action at this time.
0 commit comments