Skip to content

Commit

Permalink
Merge pull request #110 from vishnuchalla/actions-fix
Browse files Browse the repository at this point in the history
Updating actions to get triggered only on main branch
  • Loading branch information
vishnuchalla authored Jul 24, 2024
2 parents 5c69e85 + d5f90fd commit 8379169
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build-push.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Build and Push Image
on: [ push ]
on:
push:
branches:
- main

jobs:
build:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release-build-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ name: Release Build and Push Image
on:
push:
tags:
- "*"
- "*"
branches:
- main

jobs:
build:
Expand Down

0 comments on commit 8379169

Please sign in to comment.