Skip to content

feat: test

feat: test #4

Workflow file for this run

name: Trigger API on Tag
on:
push:
tags:
- '*'
jobs:
trigger-api:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Trigger API
run: |
curl -X POST http://8.138.57.92:3033/publish \
-H "Content-Type: application/json" \
-d '{"tag": "${{ github.ref }}"}'