Release v3.4.0-alpha.3 #12378
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
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@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3 | |
- name: Read package.json node and npm engines version | |
uses: skjnldsv/read-package-engines-version-actions@0ce2ed60f6df073a62a77c0a4958dd0fc68e32e7 # v2.1 | |
id: versions | |
- name: Set up Nextcloud env | |
uses: ChristophWurst/setup-nextcloud@8bc31fe189b3cb3b44122dede08ce39e8932c554 # v0.3.1 | |
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@0b7f8abb1508181956e8e162db84b466c27e18ce # v3 | |
with: | |
path: build/artifacts/mail.tar.gz | |
if-no-files-found: error |