Skip to content

Commit

Permalink
fix http method on trigger build
Browse files Browse the repository at this point in the history
  • Loading branch information
sbeck14 committed Jan 26, 2022
1 parent b80063e commit 70f2781
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/api/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ function deleteAutoBuild(app) {
}

function triggerManualAutoBuild(app) {
return axios.get(`/api/apps/${app}/builds/auto/github/trigger`, { cancelToken: this.cancelToken });
return axios.post(`/api/apps/${app}/builds/auto/github/trigger`, { cancelToken: this.cancelToken });
}

function redoBuild(app, build) {
Expand Down

0 comments on commit 70f2781

Please sign in to comment.