We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 071ccb3 commit a3f2115Copy full SHA for a3f2115
1 file changed
.github/workflows/CICD.yml
@@ -9,8 +9,19 @@ jobs:
9
update-packagist:
10
runs-on: ubuntu-latest
11
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
21
- name: Update Packagist
22
run: |
23
+ echo "Updating Packagist..."
24
curl -XPOST -H'content-type:application/json' \
25
'https://packagist.org/api/update-package?username=Fiscalapi&apiToken=${{ secrets.PACKAGIST_API_TOKEN }}' \
- -d'{"repository":{"url":"https://github.com/FiscalAPI/fiscalapi-php"}}'
26
+ -d'{"repository":{"url":"https://github.com/FiscalAPI/fiscalapi-php"}}' \
27
+ -v
0 commit comments