@@ -119,16 +119,22 @@ jobs:
119
119
EXTENSION="$(find ./modules -type f -name 'zephir_parser.so')"
120
120
fi
121
121
122
- zip -rvj zephir-parser -php-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.name }}-${{ matrix.arch }}.zip \
122
+ zip -rvj zephir_parser -php-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.name }}-${{ matrix.arch }}.zip \
123
123
$EXTENSION VERSION LICENSE CREDITS NO_WARRANTY CHANGELOG.md
124
124
echo "::endgroup::"
125
125
126
+ # Artifact names should be in next format:
127
+ # zephir_parser-{php-version}-{ts}-{os.name}-{compiler}-{arch}
128
+ # example:
129
+ # zephir_parser-php-7.3-nts-macos-clang-x64.zip
130
+ # zephir_parser-php-7.3-nts-ubuntu-gcc-x64.zip
131
+ # zephir_parser-php-7.3-nts-windows2019-vc15-x64.zip
126
132
- name : Upload Zephir Parser
127
133
uses : actions/upload-artifact@v2
128
134
with :
129
- name : zephir-parser -php-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.name }}-${{ matrix.arch }}.zip
135
+ name : zephir_parser -php-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.name }}-${{ matrix.arch }}.zip
130
136
path : |
131
- ${{ github.workspace }}/zephir-parser -*.zip
137
+ ${{ github.workspace }}/zephir_parser -*.zip
132
138
133
139
- name : Check for Errors
134
140
if : always()
@@ -159,7 +165,7 @@ jobs:
159
165
uses : actions/upload-artifact@v2
160
166
with :
161
167
retention-days : 2
162
- name : errors-zephir-parser-php-zephir-parser -php-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.name }}-${{ matrix.arch }}
168
+ name : debug-zephir_parser -php-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.name }}-${{ matrix.arch }}
163
169
path : |
164
170
${{ github.workspace }}/tests
165
171
${{ github.workspace }}/parser
@@ -259,7 +265,7 @@ jobs:
259
265
- name : Prepare Release assets
260
266
run : |
261
267
mkdir -p ./build-artifacts/release
262
- find ./build-artifacts -type f -name zephir-parser *.zip -exec cp {} ./build-artifacts/release/ ";"
268
+ find ./build-artifacts -type f -name zephir_parser *.zip -exec cp {} ./build-artifacts/release/ ";"
263
269
echo "-- Creating Release Notes"
264
270
./.ci/release-notes.sh ./CHANGELOG.md > ./build-artifacts/release/release-notes.md
265
271
0 commit comments