Skip to content

Commit 711c6db

Browse files
committed
Silence errors
1 parent 4f514b1 commit 711c6db

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/update-sdk.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,16 @@ jobs:
2929

3030
- name: Update SDK files from server repository
3131
if: always()
32+
shell: bash
3233
run: |
3334
rm -rf ./SDK/include/*
3435
mv -f ./Server/SDK/include ./SDK
3536
cd SDK
3637
git config user.name open.mp
3738
git config user.email [email protected]
3839
git add .
39-
git commit -m "Update SDK" -m "with https://github.com/openmultiplayer/open.mp/commit/${{ github.sha }}"
40-
git push
40+
git commit -m "Update SDK" -m "with https://github.com/openmultiplayer/open.mp/commit/${{ github.sha }}" || true
41+
git push || true
4142
4243
update-network:
4344
runs-on: ubuntu-latest
@@ -62,12 +63,13 @@ jobs:
6263

6364
- name: Update Network files from server repository
6465
if: always()
66+
shell: bash
6567
run: |
6668
rm -rf ./Network/*
6769
mv -f ./Server/Shared/Network/* ./Network
6870
cd Network
6971
git config user.name open.mp
7072
git config user.email [email protected]
7173
git add .
72-
git commit -m "Update Network" -m "with https://github.com/openmultiplayer/open.mp/commit/${{ github.sha }}"
73-
git push
74+
git commit -m "Update Network" -m "with https://github.com/openmultiplayer/open.mp/commit/${{ github.sha }}" || true
75+
git push || true

0 commit comments

Comments
 (0)