File tree 1 file changed +16
-1
lines changed
1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 67
67
package : ${{ fromJson(needs.bump.outputs.packages) }}
68
68
defaults :
69
69
run :
70
- working-directory : ${{ package.name }}
70
+ working-directory : ${{ matrix. package.name }}
71
71
72
72
runs-on : ubuntu-latest
73
73
@@ -84,19 +84,34 @@ jobs:
84
84
python -m pip install --upgrade pip
85
85
pip install build
86
86
87
+ <<<<<<< Updated upstream
87
88
- name : Bump version.py
88
89
run : |
89
90
export module=$(sed 's/^.*\///' <<< ${{ package.name }} | tr '-' '/')
90
91
sed -i "s/__version__.*/__version__ = \"${{ package.version }}\"/" $module/version.py
92
+ =======
93
+ - name : Bump version.py
94
+ run : |
95
+ export module=$(sed 's/^.*\///' <<< ${{ matrix.package.name }} | tr '-' '/')
96
+ sed -i "s/__version__.*/__version__ = \"${{ matrix.package.version }}\"/" $module/version.py
97
+ >>>>>>> Stashed changes
91
98
92
99
- name : Build package
93
100
run : python -m build
94
101
102
+ <<<<<<< Updated upstream
95
103
- name : Store the distribution packages
96
104
uses : actions/upload-artifact@v3
97
105
with :
98
106
name : python-package-distributions
99
107
path : ${{ package.name }}/dist/
108
+ =======
109
+ - name : Store the distribution packages
110
+ uses : actions/upload-artifact@v3
111
+ with :
112
+ name : python-package-distributions
113
+ path : ${{ matrix.package.name }}/dist/
114
+ >>>>>>> Stashed changes
100
115
101
116
publish :
102
117
You can’t perform that action at this time.
0 commit comments