Skip to content

Commit ae26c3a

Browse files
committed
fix: remove invalid secrets check in GitHub Actions workflow
- Fix syntax error with secrets.SLACK_WEBHOOK check - Use continue-on-error instead for optional Slack notifications - Workflow will now run successfully even without SLACK_WEBHOOK secret
1 parent e808feb commit ae26c3a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/docker-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,9 @@ jobs:
234234

235235
steps:
236236
- name: Notify Slack
237-
if: secrets.SLACK_WEBHOOK != ''
238237
uses: 8398a7/action-slack@v3
238+
if: always()
239+
continue-on-error: true
239240
with:
240241
status: ${{ job.status }}
241242
text: |

0 commit comments

Comments
 (0)