Skip to content

Commit a00f9af

Browse files
chore: Update build-product.yml workflow to fix path for argocd-deployed-apps.json
1 parent 8e7e150 commit a00f9af

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/build-product.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,7 @@ jobs:
8787
- name: Check if app deployed by ArgoCD
8888
id: argocd-deployed-app
8989
run: |
90-
pwd
91-
ls
92-
result=$(jq '.apps | index("${{ steps.get-parameters.outputs.app }}") != null' ./.github/argocd-deployed-apps.json)
90+
result=$(jq '.apps | index("${{ steps.get-parameters.outputs.app }}") != null' ./tmp/github-workflows/.github/argocd-deployed-apps.json)
9391
if [ "$result" = "true" ]; then
9492
echo "ARGOCD_DEPLOYED_APP=true" >> $GITHUB_ENV
9593
else

0 commit comments

Comments
 (0)