Skip to content

Commit

Permalink
fix: branch name formatting in CI/CD workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jjjermiah committed Mar 9, 2024
1 parent 2d7508a commit e38de75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: CI-CD
on:
push:
# push to any branch *
branches: [ "*"]
branches: [ "*" ]
pull_request:
branches: [ main , development]

Expand Down Expand Up @@ -263,7 +263,7 @@ jobs:
Update-README:
needs: Continuous-Deployment
runs-on: ubuntu-latest
if: steps.release.outputs.released == 'true' # only run if the branch is main and a new release has been made
if: steps.release.outputs.released == 'true'
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down

0 comments on commit e38de75

Please sign in to comment.