Skip to content

feat: loding sub dirs (#81) #46

feat: loding sub dirs (#81)

feat: loding sub dirs (#81) #46

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