Skip to content

Commit

Permalink
Make non-changes not fail in unittests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Schwab committed May 6, 2024
1 parent 1b83c01 commit fd350f0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ jobs:
run: |
cp -r -force ./addons/glecs/* ../nightly/
- name: 📂 Add / commit
- name: add-and-commit
continue-on-error: true
run: |
cd ../nightly
git config --global user.name github-actions[bot]
Expand All @@ -127,12 +128,16 @@ jobs:
echo ""
- name: 📤 Push
if: steps.add-and-commit.outcome == 'success'
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ github.repository }}
branch: nightly
directory: ../nightly

- name: finish
run: exit 0


nightly_unittests_linux_x86_64:
Expand Down

0 comments on commit fd350f0

Please sign in to comment.