Skip to content

feat: versions query (#65) #35

feat: versions query (#65)

feat: versions query (#65) #35

Workflow file for this run

name: deploy npmmirror.com
on:
push:
branches:
- main
jobs:
send_request:
runs-on: ubuntu-latest
steps:
- name: Trigger pipeline webhook
run: |
if [[ -z "${{ secrets.PIPELINE_WEBHOOK }}" ]]; then
echo "webhook is not set, skipping request"
else
curl -X POST "${{ secrets.PIPELINE_WEBHOOK }}" \
-H 'Content-Type: application/json' \
-d '{}'
fi