88 lines
3.0 KiB
YAML
88 lines
3.0 KiB
YAML
name: repod
|
|
on: [push]
|
|
|
|
jobs:
|
|
xml:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: wget https://raw.githubusercontent.com/nextcloud/appstore/master/nextcloudappstore/api/v1/release/info.xsd
|
|
- uses: ChristophWurst/xmllint-action@v1
|
|
with:
|
|
xml-file: ./appinfo/info.xml
|
|
xml-schema-file: ./info.xsd
|
|
|
|
php:
|
|
runs-on: ubuntu-latest
|
|
container: nextcloud:28
|
|
steps:
|
|
- run: apt-get update
|
|
- run: apt-get install -y git nodejs
|
|
- uses: actions/checkout@v4
|
|
- run: curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar
|
|
- run: chmod +x /usr/local/bin/composer
|
|
- run: composer install
|
|
- run: composer run lint
|
|
- run: composer run cs:check
|
|
- run: composer run psalm:check
|
|
|
|
nodejs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: skjnldsv/read-package-engines-version-actions@v3
|
|
id: versions
|
|
with:
|
|
fallbackNode: '^20.0.0'
|
|
fallbackNpm: '^9.0.0'
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ steps.versions.outputs.nodeVersion }}
|
|
- run: npm i -g npm@${{ steps.versions.outputs.npmVersion }}
|
|
- run: npm ci
|
|
- run: npm run lint
|
|
- run: npm run stylelint
|
|
- run: npm run build
|
|
|
|
release:
|
|
if: gitea.ref_type == 'tag'
|
|
runs-on: ubuntu-latest
|
|
container: nextcloud:28
|
|
steps:
|
|
- run: apt-get update
|
|
- run: apt-get install -y git nodejs
|
|
- uses: actions/checkout@v4
|
|
- run: curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar
|
|
- run: chmod +x /usr/local/bin/composer
|
|
- uses: skjnldsv/read-package-engines-version-actions@v3
|
|
id: versions
|
|
with:
|
|
fallbackNode: '^20.0.0'
|
|
fallbackNpm: '^9.0.0'
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ steps.versions.outputs.nodeVersion }}
|
|
- run: npm i -g npm@${{ steps.versions.outputs.npmVersion }}
|
|
- run: make dist
|
|
- uses: akkuman/gitea-release-action@v1
|
|
with:
|
|
files: |
|
|
build/artifacts/repod.tar.gz
|
|
- uses: FKLC/sign-files-action@v1.0.0
|
|
with:
|
|
privateKey: ${{ secrets.PRIVATEKEY }}
|
|
algorithm: RSA-SHA512
|
|
extension: .sig
|
|
outputFolder: build/artifacts
|
|
files: |
|
|
build/artifacts/repod.tar.gz
|
|
- id: sign
|
|
run: echo "SIGNATURE=$(cat build/artifacts/repod.tar.gz.sig | openssl base64 -A)" >> $GITHUB_OUTPUT
|
|
- 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.sign.outputs.SIGNATURE }}>>>" }'
|