Skip to content

Commit

Permalink
CI fix: app_api is now bundled app from NC 30.0.1 (#303)
Browse files Browse the repository at this point in the history
Since Nextcloud 30.0.1 version, AppAPI has become built into the server,
so now the `stable29` branch is the branch for Nextcloud `28` and `29`,
and the `main` branch corresponds to the `master` branch of the server,
and branch 30 is there for Nextcloud `30.0.1+`

It is tough..

Signed-off-by: Alexander Piskun <bigcat88@icloud.com>
  • Loading branch information
bigcat88 authored Sep 28, 2024
1 parent 9f29701 commit f2522aa
Showing 1 changed file with 26 additions and 5 deletions.
31 changes: 26 additions & 5 deletions .github/workflows/analysis-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ jobs:
uses: actions/checkout@v4
with:
path: apps/app_api
repository: cloud-py-api/app_api
repository: nextcloud/app_api
ref: stable29

- name: Install AppAPI
run: |
Expand Down Expand Up @@ -248,7 +249,8 @@ jobs:
uses: actions/checkout@v4
with:
path: apps/app_api
repository: cloud-py-api/app_api
repository: nextcloud/app_api
ref: stable29

- name: Install AppAPI
run: |
Expand Down Expand Up @@ -390,7 +392,8 @@ jobs:
uses: actions/checkout@v4
with:
path: apps/app_api
repository: cloud-py-api/app_api
repository: nextcloud/app_api
ref: stable29

- name: Install AppAPI
run: |
Expand Down Expand Up @@ -525,10 +528,19 @@ jobs:
run: python3 -m pip -v install ".[dev]"

- name: Checkout AppAPI
if: ${{ matrix.nextcloud != 'master' }}
uses: actions/checkout@v4
with:
path: apps/app_api
repository: cloud-py-api/app_api
repository: nextcloud/app_api
ref: stable29

- name: Checkout AppAPI
if: ${{ matrix.nextcloud == 'master' }}
uses: actions/checkout@v4
with:
path: apps/app_api
repository: nextcloud/app_api

- name: Install AppAPI
run: |
Expand Down Expand Up @@ -692,10 +704,19 @@ jobs:
run: python3 -m pip -v install ".[dev]"

- name: Checkout AppAPI
if: ${{ matrix.nextcloud != 'master' }}
uses: actions/checkout@v4
with:
path: apps/app_api
repository: nextcloud/app_api
ref: stable29

- name: Checkout AppAPI
if: ${{ matrix.nextcloud == 'master' }}
uses: actions/checkout@v4
with:
path: apps/app_api
repository: cloud-py-api/app_api
repository: nextcloud/app_api

- name: Install AppAPI
run: |
Expand Down

0 comments on commit f2522aa

Please sign in to comment.