Skip to content

Commit

Permalink
Merge pull request #29 from GsLogiMaker/fix/action-not-pushing-to-nig…
Browse files Browse the repository at this point in the history
…htly

Fix github action not pushing changes from dev to nightly branch
  • Loading branch information
GsLogiMaker authored Nov 25, 2024
2 parents 16f36de + 9ef3e6c commit e0e77d7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
steps:
- name: Pass
run: echo Pass
- name: Action
run: echo ${{github.event_name}}

compile_glecs:
needs: [data]
Expand Down Expand Up @@ -263,7 +265,7 @@ jobs:
ls bin
update_nightly:
if: ${{ (github.event_name == 'push' || github.event_name == 'closed') && github.base_ref == 'dev'}}
if: ${{ github.event_name == 'push' }}
needs: ["data", "compile_glecs", "run_test_suite"]
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit e0e77d7

Please sign in to comment.