ignore stdin #31
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync Postman Collection | |
on: | |
push: | |
branches: | |
- capi-postman | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
# - name: Set up Python | |
# uses: actions/setup-python@v2 | |
# with: | |
# python-version: '3.x' | |
- name: Install HTTPie | |
run: | | |
sudo apt update | |
sudo apt install httpie | |
- name: Upload Flows Collection | |
run: | | |
curl -L -f -X PUT 'https://api.getpostman.com/collections/24926895-7bf51205-92ed-49d1-af4a-0130cf84b6f6' \ | |
--header 'X-Api-Key: ${{ secrets.POSTMAN_API_KEY }}' \ | |
-F 'collection=@postman/v1/whatsapp-flows-api.postman_collection.json;type=application/json' | |
- name: Upload Cloud API Collection | |
run: | | |
http --follow --form --ignore-stdin PUT 'https://api.getpostman.com/collections/13382743-84d01ff8-4253-4720-b454-af661f36acc2' \ | |
'X-Api-Key: ${{ secrets.POSTMAN_API_KEY }}' \ | |
collection@postman/v1/whatsapp-cloud-api.postman_collection.json | |
# - name: Upload Cloud API Collection | |
# run: | | |
# curl -L -f -X PUT 'https://api.getpostman.com/collections/13382743-84d01ff8-4253-4720-b454-af661f36acc2' \ | |
# --header 'X-Api-Key: ${{ secrets.POSTMAN_API_KEY }}' \ | |
# -F 'collection=@postman/v1/whatsapp-cloud-api.postman_collection.json;type=application/json' |