Skip to content

Commit 9d3fb49

Browse files
committed
chore: create artifact during php package build
make sure that each release will be added from artifact during package build process
1 parent 97a3752 commit 9d3fb49

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/php-package.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,14 @@ jobs:
5050
run: |
5151
chmod +x ./phar-composer-${{ env.PHAR_TOOL_VERSION }}.phar
5252
./phar-composer-${{ env.PHAR_TOOL_VERSION }}.phar build ./ mysql2jsonl
53-
53+
- uses: actions/upload-artifact@v4
54+
with:
55+
name: ${{ env.GITHUB_REF }}
56+
path: mysql2json
57+
- name: Generate output
58+
id: output
59+
run: |
60+
echo "artifact=${GITHUB_REF}" >> "$GITHUB_OUTPUT"
5461
5562
5663

0 commit comments

Comments
 (0)