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

Commit bb99746

Browse files
committed
Updated github actions
1 parent f9cbd17 commit bb99746

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/build.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@ jobs:
3333
3434
- name: Check for changes and commit
3535
run: |
36-
git stash
36+
if (-not (git diff --quiet)) { git stash }
37+
3738
git pull --rebase
38-
git stash pop
39+
if (git stash list | Select-String 'stash@{0}') { git stash pop }
40+
3941
git diff --exit-code || (git add shared/spammer.dll && git commit -m "Add built spammer.dll for Windows" && git push)
4042
env:
4143
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -70,9 +72,13 @@ jobs:
7072
7173
- name: Check for changes and commit
7274
run: |
73-
git stash
75+
if ! git diff --quiet; then git stash; fi
76+
7477
git pull --rebase
75-
git stash pop
78+
79+
if git stash list | grep -q 'stash@{0}'; then git stash pop; fi
80+
81+
7682
git diff --exit-code || (git add shared/spammer.so && git commit -m "Add built spammer.so for Linux" && git push)
7783
env:
7884
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)