diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 69c921e9..5e9161f8 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -40,8 +40,8 @@ jobs: # do not stop on another job's failure fail-fast: false matrix: - php-versions: ['7.4'] - server-versions: ['stable25'] + php-versions: ["7.4"] + server-versions: ["stable25"] services: mysql: @@ -100,7 +100,6 @@ jobs: name: report-mysql-${{ matrix.php-versions }}-${{ matrix.server-versions }} path: apps/${{ env.APP_NAME }}/playwright-report - pgsql: runs-on: ubuntu-latest needs: vue @@ -109,8 +108,8 @@ jobs: # do not stop on another job's failure fail-fast: false matrix: - php-versions: ['7.4'] - server-versions: ['stable25'] + php-versions: ["7.4"] + server-versions: ["stable25"] services: postgres: @@ -181,8 +180,8 @@ jobs: # do not stop on another job's failure fail-fast: false matrix: - php-versions: ['7.4'] - server-versions: ['stable25'] + php-versions: ["7.4"] + server-versions: ["stable25"] steps: - name: Checkout server @@ -231,4 +230,3 @@ jobs: with: name: report-sqlite-${{ matrix.php-versions }}-${{ matrix.server-versions }} path: apps/${{ env.APP_NAME }}/playwright-report - diff --git a/.github/workflows/lint-php.yaml b/.github/workflows/lint-php.yaml index 599b36c9..fbbda5d3 100644 --- a/.github/workflows/lint-php.yaml +++ b/.github/workflows/lint-php.yaml @@ -25,4 +25,4 @@ jobs: - name: PHP-CS-Fixer uses: docker://oskarstark/php-cs-fixer-ga with: - args: --dry-run --diff lib \ No newline at end of file + args: --dry-run --diff lib diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 653f6d62..2a42dfee 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,34 +13,34 @@ jobs: permissions: contents: write steps: - - name: Checkout - uses: actions/checkout@v3 + - name: Checkout + uses: actions/checkout@v3 - - name: Use Node.js - uses: actions/setup-node@v3 - with: - node-version: 18.x + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: 18.x - - name: Build - run: | - make dev-setup - make build-js-production - ./scripts/bundle.sh + - name: Build + run: | + make dev-setup + make build-js-production + ./scripts/bundle.sh - - name: Upload app tarball to release - uses: svenstaro/upload-release-action@v2 - id: attach_to_release - with: - file: memories.tar.gz - asset_name: memories.tar.gz - tag: ${{ github.ref }} - overwrite: true + - name: Upload app tarball to release + uses: svenstaro/upload-release-action@v2 + id: attach_to_release + with: + file: memories.tar.gz + asset_name: memories.tar.gz + tag: ${{ github.ref }} + overwrite: true - - name: Upload app to Nextcloud appstore - uses: R0Wi/nextcloud-appstore-push-action@v1 - with: - app_name: ${{ env.APP_NAME }} - appstore_token: ${{ secrets.APPSTORE_TOKEN }} - download_url: ${{ steps.attach_to_release.outputs.browser_download_url }} - app_private_key: ${{ secrets.APP_PRIVATE_KEY }} - nightly: ${{ github.event.release.prerelease }} \ No newline at end of file + - name: Upload app to Nextcloud appstore + uses: R0Wi/nextcloud-appstore-push-action@v1 + with: + app_name: ${{ env.APP_NAME }} + appstore_token: ${{ secrets.APPSTORE_TOKEN }} + download_url: ${{ steps.attach_to_release.outputs.browser_download_url }} + app_private_key: ${{ secrets.APP_PRIVATE_KEY }} + nightly: ${{ github.event.release.prerelease }}