fix: log more information when we can't write all data #740
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: 2022 Nextcloud GmbH and Nextcloud contributors | |
# SPDX-License-Identifier: MIT | |
on: [push, pull_request] | |
name: Package | |
env: | |
APP_NAME: files_antivirus | |
jobs: | |
package: | |
name: Package nightly release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup krankler | |
run: | | |
wget https://github.com/ChristophWurst/krankerl/releases/download/v0.14.0/krankerl | |
chmod +x krankerl | |
- name: Package app | |
run: | | |
./krankerl package | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.APP_NAME }}.tar.gz | |
path: build/artifacts/${{ env.APP_NAME }}.tar.gz |