Browse Source
fix(deps): Fix reseting vendor-bin
Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/9230/head
Joas Schilling
3 years ago
No known key found for this signature in database
GPG Key ID: C400AAF20C1BB6FC
1 changed files with
12 additions and
3 deletions
-
.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 |
|
|
|