Skip to content

Commit 0b70043

Browse files
[BUGFIX] Make sure vendor libs can be stashed
1 parent df40158 commit 0b70043

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ jobs:
3838
run: composer bundle -v
3939

4040
- name: Stash bundled files
41-
run: git stash push -- composer.json Resources/Private/Libs/vendor
41+
run: |
42+
git add -f Resources/Private/Libs/vendor
43+
git stash push -- composer.json Resources/Private/Libs/vendor
4244
4345
- name: Reset files
4446
run: git reset --hard HEAD && git clean -dfx

0 commit comments

Comments
 (0)