Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit b6f9cf3

Browse files
committed
Updated github actions
1 parent dea14de commit b6f9cf3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/build.yml

+4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ jobs:
3333
3434
- name: Check for changes and commit
3535
run: |
36+
git stash
3637
git pull --rebase
38+
git stash pop
3739
git diff --exit-code || (git add shared/spammer.dll && git commit -m "Add built spammer.dll for Windows" && git push)
3840
env:
3941
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -68,7 +70,9 @@ jobs:
6870
6971
- name: Check for changes and commit
7072
run: |
73+
git stash
7174
git pull --rebase
75+
git stash pop
7276
git diff --exit-code || (git add shared/spammer.so && git commit -m "Add built spammer.so for Linux" && git push)
7377
env:
7478
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)