Skip to content

Commit 86950e6

Browse files
committed
Revert "Update pecl.yml"
This reverts commit 92dec1f.
1 parent 56aa759 commit 86950e6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/pecl.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,17 +131,17 @@ jobs:
131131
-o artifact_wrapper.zip
132132
133133
mkdir -p "$artifact_id"
134-
unzip -oq artifact_wrapper.zip -d "${artifact_id}"
134+
unzip -oq artifact_wrapper.zip -d "./$artifact_id"
135135
136136
if ! gh release view "${release_tag}" -R ${{ github.repository }} >/dev/null 2>&1; then
137-
if ! gh release create "${release_tag}" ${artifact_id}/php-* \
137+
if ! gh release create "${release_tag}" ./$artifact_id/php-* \
138138
-t "${extension} ${ref}" \
139139
-n "Release of PECL extension '${extension}' version ${ref}" \
140140
-R ${{ github.repository }}; then
141-
gh release upload "${release_tag}" ${artifact_id}/php-* \
141+
gh release upload "${release_tag}" ./$artifact_id/php-* \
142142
-R ${{ github.repository }} --clobber
143143
fi
144144
else
145-
gh release upload "${release_tag}" ${artifact_id}/php-* \
145+
gh release upload "${release_tag}" ./$artifact_id/php-* \
146146
-R ${{ github.repository }} --clobber
147147
fi

0 commit comments

Comments
 (0)