File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- main
7
- - develop_v2.0
7
+ - " 2.0 "
8
8
tags :
9
- - ' v*.*.*'
9
+ - " v*.*.*"
10
10
pull_request :
11
11
branches :
12
12
- main
13
- - develop_v2.0
13
+ - " 2.0 "
14
14
15
15
concurrency :
16
16
group : ci-${{ github.ref }}
22
22
runs-on : ubuntu-latest
23
23
strategy :
24
24
matrix :
25
- python-version : [' 3.11', ' 3.12', ' 3.13' ]
25
+ python-version : [" 3.11", " 3.12", " 3.13" ]
26
26
27
27
steps :
28
28
- name : Checkout code
@@ -103,15 +103,15 @@ jobs:
103
103
104
104
with :
105
105
github_token : ${{ secrets.GITHUB_TOKEN }}
106
- branch : develop_v2.0
106
+ branch : " 2.0 "
107
107
directory : .
108
108
force : true
109
109
110
110
# Build and Publish Steps
111
111
- name : Set up Python
112
112
uses : actions/setup-python@v5
113
113
with :
114
- python-version : ' 3.8'
114
+ python-version : " 3.8"
115
115
116
116
- name : Install build tools
117
117
run : |
@@ -123,7 +123,7 @@ jobs:
123
123
124
124
- name : Publish package to TestPyPI
125
125
env :
126
- TWINE_USERNAME : ' __token__'
126
+ TWINE_USERNAME : " __token__"
127
127
TWINE_PASSWORD : ${{ secrets.TEST_PYPI_API_TOKEN }}
128
128
run : |
129
129
python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/* --verbose
@@ -132,7 +132,7 @@ jobs:
132
132
uses : conda-incubator/setup-miniconda@v2
133
133
with :
134
134
auto-update-conda : true
135
- python-version : ' 3.10'
135
+ python-version : " 3.10"
136
136
channels : conda-forge
137
137
use-mamba : false
138
138
@@ -150,4 +150,4 @@ jobs:
150
150
run : |
151
151
for pkg in dist/*/*.tar.bz2; do
152
152
conda run -n base anaconda upload "$pkg" --force
153
- done
153
+ done
You can’t perform that action at this time.
0 commit comments