ci: automate publishing on appstore
Some checks failed
repod / xml (push) Successful in 14s
repod / php (push) Successful in 55s
repod / nodejs (push) Successful in 1m46s
repod / release (push) Failing after 2m40s

This commit is contained in:
Michel Roux 2024-01-15 18:07:37 +01:00
parent 1b1aac6f3d
commit 9b6319cf89

View File

@ -45,7 +45,7 @@ jobs:
- run: npm run build - run: npm run build
release: release:
if: startsWith(gitea.ref, 'refs/tags') if: gitea.ref_type == 'tag'
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: nextcloud:28 container: nextcloud:28
steps: steps:
@ -67,4 +67,12 @@ jobs:
- uses: akkuman/gitea-release-action@v1 - uses: akkuman/gitea-release-action@v1
with: with:
files: | files: |
build/artifacts/RePod.tar.gz build/artifacts/repod.tar.gz
- uses: actionsflow/axios@v1
with:
url: https://apps.nextcloud.com/api/v1/apps/releases
method: POST
accept: 200,201
headers: '{ "Authorization": "Token <<<${ secrets.TOKEN }>>>" }'
content-type: application/json
data: '{ "download": "https://git.crystalyx.net/Xefir/repod/releases/download/latest/repod.tar.gz", "signature": "<<<${{ secrets.SIGNATURE }}>>>" }'