Skip to content

fixed ci build #102

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/create-release-draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,17 @@ jobs:
node-version: 16.x

- name: Build
run: make
run: |
npm install --deps
npm run build

- name: Install Krankerl
run: |
wget https://github.com/ChristophWurst/krankerl/releases/download/v0.13.0/krankerl_0.13.0_amd64.deb
sudo dpkg -i krankerl_0.13.0_amd64.deb
wget https://github.com/ChristophWurst/krankerl/releases/download/v0.14.0/krankerl_0.14.0_amd64.deb
sudo dpkg -i krankerl_0.14.0_amd64.deb

- name: Package app
run: krankerl package
run: krankerl package || make appstore

# - name: Get nextcloud-min-version from appinfo
# id: appinfo
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ exclude .eslintrc.js .l10nignore .nextcloudignore Makefile
exclude *.yaml *.yml *.php *.xml *.js *.json *.lock
exclude CODE_OF_CONDUCT.md
exclude SECURITY.md
exclude krankerl.toml

recursive-exclude * *.yaml *.yml *.php *.xml *.js *.json *.lock *.png

Expand Down
5 changes: 5 additions & 0 deletions krankerl.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[package]
before_cmds = [
"npm install --deps",
"npm run build",
]