Skip to content

use httpie

use httpie #26

Workflow file for this run

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: |

Check failure on line 33 in .github/workflows/postman-sync.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/postman-sync.yaml

Invalid workflow file

You have an error in your yaml syntax on line 33
http --follow PUT 'https://api.getpostman.com/collections/13382743-84d01ff8-4253-4720-b454-af661f36acc2' \
'X-Api-Key: ${{ secrets.POSTMAN_API_KEY }}' \
< 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'