Skip to content

Commit

Permalink
💚(project) fix trigger of release actions on tag and on main
Browse files Browse the repository at this point in the history
Release actions that publish docker images to Dockerhub are still not triggered.
Github Actions filter pattern does not support regex characters such as `$`.
Removing this character in the pattern, and reverting back trigger on main
branch push to release intermediate images.
  • Loading branch information
wilbrdt committed May 24, 2024
1 parent 8283903 commit b3b22ba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ name: Publish API image to Hub

on:
push:
branches:
- main
tags:
- 'v[0-9]+.[0-9]+.[0-9]+$'
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
hub:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ name: Publish APP image to Hub

on:
push:
branches:
- main
tags:
- 'v[0-9]+.[0-9]+.[0-9]+$'
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
hub:
Expand Down

0 comments on commit b3b22ba

Please sign in to comment.