summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2021-02-06 11:33:06 +0100
committerBenjamin Brahmer <info@b-brahmer.de>2021-02-06 11:47:24 +0100
commit2dc83320bcc03ae9ab0dc1bbde9245ee3fdc8b72 (patch)
tree4f6a2ed6cafab3f68819162b71725f54a105541f /.github
parente81eda8cd1208b57bf887ea752cce72a1106d5aa (diff)
Actions: Setup app before release
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-release.yml13
1 files changed, 11 insertions, 2 deletions
diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml
index 3e1ff30a5..085deba8f 100644
--- a/.github/workflows/build-release.yml
+++ b/.github/workflows/build-release.yml
@@ -31,12 +31,21 @@ jobs:
- name: Set up server non MySQL
uses: SMillerDev/nextcloud-actions/setup-nextcloud@main
with:
- cron: true
+ cron: false
version: ${{ matrix.nextcloud }}
database-type: ${{ matrix.database }}
+ - name: Prime app build
+ run: make
+
+ - name: Configure server with app
+ uses: SMillerDev/nextcloud-actions/setup-nextcloud-app@main
+ with:
+ app: ${{ env.APP_NAME }}
+ check-code: false
+
- name: build and create archive
- run: cd ../server/apps/${{ env.APP_NAME }} && make && make appstore
+ run: cd ../server/apps/${{ env.APP_NAME }} && make appstore
env:
app_private_key: ${{ secrets.APP_PRIVATE_KEY }}
app_public_cert: ${{ secrets.APP_PUBLIC_CERT }}