Update .github/workflows/CI.yml
Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled
GHA Testing / gha-testing (push) Successful in 3s
Build and Push Docker Image / testing (1.24.x, ubuntu-latest) (push) Successful in 1m10s

This commit is contained in:
Alex Savin
2025-04-29 14:27:53 -04:00
parent fc56a2ea9e
commit 0db3ab00d2

View File

@ -114,10 +114,10 @@ jobs:
- name: Auto Execute a Workflow
run: |
curl -X 'POST' \
'http://10.10.11.26:8090/api/v1/repos/${{ github.repository_owner }}/${{ github.repository.name }}/actions/workflows/CD.yml/dispatches' \
'http://10.10.11.26:8090/api/v1/repos/${{ github.repository.owner.login }}/${{ github.repository.name }}/actions/workflows/CD.yml/dispatches' \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'Authorization: Basic ${{ echo -n "secrets.SECRET_USERNAME:secrets.SECRET_PASSWORD" | base64 }}' \
-H 'Authorization: Basic $( echo -n "secrets.OWNER_USERNAME:secrets.OWNER_PASSWORD" | base64 )' \
-H 'Authorization: token ${{ secrets.GHA_TOKEN }}' \
-d '{"ref":"${{ github.ref }}","inputs":{"Version":"${{ steps.version_step.outputs.COMMIT_SHA_SHORT }}","Env":"${{ github.ref_name}}"}}'
shell: bash