Skip to content

Commit

Permalink
ci: Add deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
castus committed Oct 28, 2023
1 parent 5277b1e commit b8e2565
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/distribute.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,15 @@ jobs:

- name: Deploy to ArgoCD
run: |
status_code=$(curl -o ./curl-request -w "%{http_code}" -X POST https://api.github.com/repos/castus/lights-api-charts/dispatches \
set -e
status_code=$(curl -o ./curl-request -w "%{response_code}" -X POST https://api.github.com/repos/castus/lights-api-charts/dispatches \
-H 'Accept: application/vnd.github.everest-preview+json' \
-u ${{ secrets.CHARTS_DEPLOY_TOKEN }} \
--data '{"event_type": "deploy", "client_payload": { "image_tag": "'"${{ steps.meta.outputs.tags }}"'" }}')
cat ./curl-request
if [ $status_code -eq 200 ]; then
if [[ $status_code -eq 200 ]]; then
echo "Request send"
else
cat ./curl-request
exit 1
fi

0 comments on commit b8e2565

Please sign in to comment.