-
Notifications
You must be signed in to change notification settings - Fork 40
29 lines (26 loc) · 867 Bytes
/
package.yml
File metadata and controls
29 lines (26 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- 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@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: ${{ env.APP_NAME }}.tar.gz
path: build/artifacts/${{ env.APP_NAME }}.tar.gz