ci: automate appstore publishing

This commit is contained in:
Michel Roux 2024-01-15 23:17:30 +01:00
parent 314b2c449c
commit 66197f24fc
1 changed files with 15 additions and 1 deletions

View File

@ -63,8 +63,22 @@ jobs:
with:
node-version: ${{ steps.versions.outputs.nodeVersion }}
- run: npm i -g npm@${{ steps.versions.outputs.npmVersion }}
- run: make dist
- id: dist
name: dist
run: |
make dist
echo "$KEYFILE" > /tmp/repod.key
echo "SIGNATURE=$(openssl dgst -sha512 -sign /tmp/repod.key build/artifacts/repod.tar.gz | openssl base64)" >> $GITHUB_OUTPUT
env:
KEYFILE: ${{ secrets.KEYFILE }}
- uses: akkuman/gitea-release-action@v1
with:
files: |
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 }}>>>" }'
data: '{ "download": "https://git.crystalyx.net/Xefir/repod/releases/download/<<<${{ gitea.ref_name }}>>>/repod.tar.gz", "signature": "<<<${{ steps.dist.outputs.SIGNATURE }}>>>" }'