Skip to content

Commit

Permalink
chore: fix for url check again
Browse files Browse the repository at this point in the history
  • Loading branch information
tenzinsamten committed Jan 12, 2025
1 parent 2bbf76d commit 7c68745
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,14 @@ jobs:
encoded_url=$(python -c "import urllib.parse; print(urllib.parse.quote('${image_url}'))")
echo "Encoded URL: $encoded_url"
echo "Encoded complete: ${deploy_url}?imgURL=${encoded_url}"
curl "$deploy_url?imgURL=$$encoded_url"
curl "${deploy_url}?imgURL=${encoded_url}"
- name: Trigger Render Deployment - 2
env:
deploy_url: ${{ secrets.RENDER_DEPLOY_HOOK_URL }}
run: |
image_url=ghcr.io/$lower_owner/pecha-frontend:pecha-frontend:12732320595-945a6f7
echo "Encoded complete: ${deploy_url}?imgURL=${image_url}"
curl "${deploy_url}?imgURL=${image_url}"
sonarQube:
if: github.event_name == 'workflow_dispatch'
name: SonarQube Scan
Expand Down

0 comments on commit 7c68745

Please sign in to comment.