We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3554ac5 commit a91c5b5Copy full SHA for a91c5b5
.github/workflows/publish.yml
@@ -7,7 +7,7 @@ jobs:
7
runs-on: ubuntu-latest
8
steps:
9
- name: Dispatch packagist update
10
- run: >-
11
- curl -X POST https://packagist.org/api/update-package?username=${{ secrets.PACKAGIST_USERNAME }}&apiToken=${{ secrets.PACKAGIST_API_TOKEN }}
12
- -d '{"repository":{"url":"https://github.com/detectlanguage/detectlanguage-php"}}'
13
- -H "Content-Type: application/json"
+ run: |
+ curl -X POST -d '{"repository":{"url":"https://github.com/detectlanguage/detectlanguage-php"}}' \
+ -H "Content-Type: application/json" \
+ https://packagist.org/api/update-package?username=${{ secrets.PACKAGIST_USERNAME }}&apiToken=${{ secrets.PACKAGIST_API_TOKEN }}
0 commit comments