Skip to content

Remove the ; at the end of httpclient variable (#815) #874

Remove the ; at the end of httpclient variable (#815)

Remove the ; at the end of httpclient variable (#815) #874

Workflow file for this run

name: Process commit
on:
workflow_dispatch:
push:
branches:
- 'master'
- 'beta'
- 'beta-corona'
- 'release-*'
ignore-paths:
- '*.md'
jobs:
dispatchWorkflow:
name: Dispatch build
runs-on: [ubuntu-latest]
steps:
- name: Dispatch Workflow
run: >
curl -X POST
-H 'Accept: application/vnd.github.v3+json'
-H 'Authorization: token ${{ secrets.SECURE_TOKEN }}'
--silent --show-error --fail
${{ secrets.BUILD_WORKFLOW_DISPATCH }}
-d '{
"ref":"main",
"inputs": {
"repository": "${{ github.repository }}",
"ref": "${{ github.ref }}",
"sha": "${{ github.sha }}",
"build-file": "pom.xml",
"version-script": ".github/updatePOMVersion.sh"
}
}'