chore(CI): Adjust testing matrix for Nextcloud 30 on main #14556
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2020-2024 Nextcloud GmbH and Nextcloud contributors | |
# SPDX-License-Identifier: MIT | |
name: Packaging | |
on: pull_request | |
permissions: | |
contents: read | |
jobs: | |
release-tarball: | |
runs-on: ubuntu-latest | |
name: Build release tarball | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Read package.json node and npm engines version | |
uses: skjnldsv/read-package-engines-version-actions@8205673bab74a63eb9b8093402fd9e0e018663a1 # v2.2 | |
id: versions | |
- name: Set up Nextcloud env | |
uses: ChristophWurst/setup-nextcloud@fc0790385c175d97e88a7cb0933490de6e990374 # v0.3.2 | |
with: | |
node-version: ${{ steps.versions.outputs.nodeVersion }} | |
npm-version: ${{ steps.versions.outputs.npmVersion }} | |
tools: 'krankerl' | |
- name: Package app | |
run: krankerl package | |
- uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4 | |
with: | |
path: build/artifacts/mail.tar.gz | |
if-no-files-found: error |