Skip to content

Commit

Permalink
fixed ci build (#102)
Browse files Browse the repository at this point in the history
* fixed ci build

* ignore krankerl.toml in MANIFEST.in
  • Loading branch information
bigcat88 authored Mar 23, 2023
1 parent fff2718 commit 3b37db7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
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",
]

0 comments on commit 3b37db7

Please sign in to comment.