Skip to content
  • Sponsor cloud-py-api/cloud_py_api

  • Notifications You must be signed in to change notification settings
  • Fork 7

Commit 3b37db7

Browse files
authoredMar 23, 2023
fixed ci build (#102)
* fixed ci build * ignore krankerl.toml in MANIFEST.in
1 parent fff2718 commit 3b37db7

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed
 

‎.github/workflows/create-release-draft.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,17 @@ jobs:
3737
node-version: 16.x
3838

3939
- name: Build
40-
run: make
40+
run: |
41+
npm install --deps
42+
npm run build
4143
4244
- name: Install Krankerl
4345
run: |
44-
wget https://github.com/ChristophWurst/krankerl/releases/download/v0.13.0/krankerl_0.13.0_amd64.deb
45-
sudo dpkg -i krankerl_0.13.0_amd64.deb
46+
wget https://github.com/ChristophWurst/krankerl/releases/download/v0.14.0/krankerl_0.14.0_amd64.deb
47+
sudo dpkg -i krankerl_0.14.0_amd64.deb
4648
4749
- name: Package app
48-
run: krankerl package
50+
run: krankerl package || make appstore
4951

5052
# - name: Get nextcloud-min-version from appinfo
5153
# id: appinfo

‎MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ exclude .eslintrc.js .l10nignore .nextcloudignore Makefile
77
exclude *.yaml *.yml *.php *.xml *.js *.json *.lock
88
exclude CODE_OF_CONDUCT.md
99
exclude SECURITY.md
10+
exclude krankerl.toml
1011

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

‎krankerl.toml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[package]
2+
before_cmds = [
3+
"npm install --deps",
4+
"npm run build",
5+
]

0 commit comments

Comments
 (0)