Skip to content

Commit

Permalink
fix(github-workflows): update tags trigger for app and base image dep…
Browse files Browse the repository at this point in the history
…loyments
  • Loading branch information
entelecheia committed Aug 21, 2023
1 parent 24c6a50 commit ce5c741
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/deploy-app-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ on:
workflow_call:
workflow_dispatch:
push:
tags: ["v*"]
tags:
- "*"

# Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds.
env:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/deploy-base-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ on:
workflow_call:
workflow_dispatch:
push:
tags: ["v*"]
tags:
- "*"

# Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds.
env:
Expand Down

0 comments on commit ce5c741

Please sign in to comment.