Skip to content

Commit 5e3428b

Browse files
committed
Refactor curl command in buf-push.yaml to improve syntax by removing unnecessary quotes around the form variable for better compatibility.
1 parent 2270658 commit 5e3428b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/buf-push.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ jobs:
2020
breaking: ${{ github.event_name == 'push' }}
2121
- uses: enflo/curl-action@master
2222
with:
23-
curl: -X POST --fail -F token=${{ secrets.GITLAB_TRIGGER_TOKEN }} -F ref=master --form "variables[REMOTE_REF]=${{ github.ref }}" https://git.tcncloud.net/api/v4/projects/2193/trigger/pipeline
24-
23+
curl: -X POST --fail -F token=${{ secrets.GITLAB_TRIGGER_TOKEN }} -F ref=master --form variables[REMOTE_REF]=${{ github.ref }} https://git.tcncloud.net/api/v4/projects/2193/trigger/pipeline
24+

0 commit comments

Comments
 (0)