summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-04-03 10:44:48 +0200
committerJoas Schilling <coding@schilljs.com>2023-04-03 19:29:19 +0200
commit5ec16f5087f9df8cd7636c1e6a8360fa6c07f0ef (patch)
tree60894807f0d97ec5ec985ffa8fe53d368bf74599 /.github
parent091c6a63686eaac9ed74b285d42575e0cc909bcd (diff)
fix(deps): Fix reseting vendor-bin
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/update-nextcloud-ocp.yml15
1 files changed, 12 insertions, 3 deletions
diff --git a/.github/workflows/update-nextcloud-ocp.yml b/.github/workflows/update-nextcloud-ocp.yml
index 7f1224809..4e262ab7c 100644
--- a/.github/workflows/update-nextcloud-ocp.yml
+++ b/.github/workflows/update-nextcloud-ocp.yml
@@ -41,14 +41,23 @@ jobs:
- name: Composer update nextcloud/ocp
run: composer require --dev nextcloud/ocp:dev-${{ matrix.branches }}
- continue-on-error: true
- - name: Reset checkout dirs
+ - name: Reset checkout 3rdparty
run: |
git clean -f 3rdparty
+ git checkout 3rdparty
+ continue-on-error: true
+
+ - name: Reset checkout vendor
+ run: |
git clean -f vendor
+ git checkout vendor
+ continue-on-error: true
+
+ - name: Reset checkout vendor-bin
+ run: |
git clean -f vendor-bin
- git checkout 3rdparty vendor vendor-bin
+ git checkout vendor-bin
continue-on-error: true
- name: Create Pull Request