File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -29,15 +29,16 @@ jobs:
29
29
30
30
- name : Update SDK files from server repository
31
31
if : always()
32
+ shell : bash
32
33
run : |
33
34
rm -rf ./SDK/include/*
34
35
mv -f ./Server/SDK/include ./SDK
35
36
cd SDK
36
37
git config user.name open.mp
37
38
git config user.email [email protected]
38
39
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
41
42
42
43
update-network :
43
44
runs-on : ubuntu-latest
@@ -62,12 +63,13 @@ jobs:
62
63
63
64
- name : Update Network files from server repository
64
65
if : always()
66
+ shell : bash
65
67
run : |
66
68
rm -rf ./Network/*
67
69
mv -f ./Server/Shared/Network/* ./Network
68
70
cd Network
69
71
git config user.name open.mp
70
72
git config user.email [email protected]
71
73
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
You can’t perform that action at this time.
0 commit comments