Skip to content

Commit

Permalink
update branhes ci
Browse files Browse the repository at this point in the history
  • Loading branch information
VisualDev-FR committed Dec 12, 2023
1 parent 3c2e7e3 commit ad94391
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI

on:
push:
branches: [ master ]
branches: [ "*" ]
pull_request:
branches: [ master ]

Expand Down Expand Up @@ -37,6 +37,7 @@ jobs:
build_docker:
needs: build_app
runs-on: ubuntu-latest
if: (github.event_name == 'push' || github.event_name == 'pull_request') && github.event.ref == 'refs/heads/master'

steps:
- name: Checkout code
Expand Down Expand Up @@ -69,6 +70,8 @@ jobs:
deploy:
needs: build_docker
runs-on: ubuntu-latest
if: (github.event_name == 'push' || github.event_name == 'pull_request') && github.event.ref == 'refs/heads/master'

steps:
- name: deploy
run: |
Expand Down

0 comments on commit ad94391

Please sign in to comment.