File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 95
95
permissions :
96
96
id-token : write # This is required for trusted publishing to PyPI
97
97
steps :
98
+ - name : git clone develop
99
+ uses : actions/checkout@v4
100
+ with :
101
+ ref : develop
102
+
98
103
- name : set up Python
99
104
uses : actions/setup-python@v4
100
105
with :
@@ -107,17 +112,16 @@ jobs:
107
112
108
113
- name : build binary wheel and source tarball
109
114
run : python -m build
110
- working-directory : ./nextplot
111
115
112
116
- name : Publish package distributions to PyPI
113
117
if : ${{ matrix.target-env == 'pypi' }}
114
118
uses : pypa/gh-action-pypi-publish@release/v1
115
119
with :
116
- packages-dir : ./nextplot/ dist
120
+ packages-dir : ./dist
117
121
118
122
- name : Publish package distributions to TestPyPI
119
123
if : ${{ matrix.target-env == 'testpypi' }}
120
124
uses : pypa/gh-action-pypi-publish@release/v1
121
125
with :
122
126
repository-url : https://test.pypi.org/legacy/
123
- packages-dir : ./nextplot/ dist
127
+ packages-dir : ./dist
You can’t perform that action at this time.
0 commit comments