Skip to content

Commit a3f2115

Browse files
authored
Update CICD.yml
1 parent 071ccb3 commit a3f2115

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/CICD.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,19 @@ jobs:
99
update-packagist:
1010
runs-on: ubuntu-latest
1111
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v3
14+
15+
- name: Debug info
16+
run: |
17+
echo "Tag: ${{ github.ref }}"
18+
echo "Repository: ${{ github.repository }}"
19+
echo "Event name: ${{ github.event_name }}"
20+
1221
- name: Update Packagist
1322
run: |
23+
echo "Updating Packagist..."
1424
curl -XPOST -H'content-type:application/json' \
1525
'https://packagist.org/api/update-package?username=Fiscalapi&apiToken=${{ secrets.PACKAGIST_API_TOKEN }}' \
16-
-d'{"repository":{"url":"https://github.com/FiscalAPI/fiscalapi-php"}}'
26+
-d'{"repository":{"url":"https://github.com/FiscalAPI/fiscalapi-php"}}' \
27+
-v

0 commit comments

Comments
 (0)