Skip to content

Commit e12c5c0

Browse files
committed
Fix: Invalid Workflow
1 parent bdb4fe1 commit e12c5c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-docker-image-standard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
until check_availability; do
7777
RETRY_COUNT=$((RETRY_COUNT + 1))
7878
if [ $RETRY_COUNT -ge $MAX_RETRIES ]; then
79-
echo "Caddy version ${{ env.VERSION }}-builder or ${{ env.VERSION }} is not available after $MAX_RETRIES retries. Triggering workflow again."
79+
echo "Caddy version ${{ env.VERSION }}-builder or ${{ env.VERSION }} is not available after $MAX_RETRIES retries. Setting environment variable to trigger job again."
8080
echo "DEPENDENCIES_AVAILABILITY=false" >> $GITHUB_ENV
8181
exit 1
8282
fi
@@ -85,7 +85,7 @@ jobs:
8585
done
8686
echo "DEPENDENCIES_AVAILABILITY=true" >> $GITHUB_ENV
8787
88-
- name: Trigger Build Workflow
88+
- name: Trigger Build Workflow
8989
if: env.DEPENDENCIES_AVAILABILITY == 'false'
9090
uses: actions/github-script@v7
9191
with:

0 commit comments

Comments
 (0)