Skip to content

Commit

Permalink
Fix typo on test workflow trigger.
Browse files Browse the repository at this point in the history
  • Loading branch information
scossu committed May 7, 2024
1 parent 15e32bd commit 87289c2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/push-app-image.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
name: Push app image
on:
# This runs on v *.*.0 after the base image has been
# built and pushed, or on v
# built and pushed, or on patch version tag.
push:
tags:
- "v*.*.[1-9]*"
workflow_run:
workflows: ["Push base image"]
types: ["completed"]
workflows:
- "Push base image"
types:
- "completed"

env:
DOCKER_USER: lcnetdev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-test-image.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Push test image
on:
push:
branch:
branches:
- "test"

env:
Expand Down

0 comments on commit 87289c2

Please sign in to comment.