update renovate config and desable tauri in makefile NOCHANGELOG
This commit is contained in:
parent
78856cc32a
commit
2db7dc41fe
|
@ -16,7 +16,7 @@
|
||||||
"ignoreDeps": ["$CI_REGISTRY/funkwhale/backend-test-docker"],
|
"ignoreDeps": ["$CI_REGISTRY/funkwhale/backend-test-docker"],
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
{
|
{
|
||||||
"matchPaths": ["api/*", "front/*", "docs/*"],
|
"matchFileNames": ["api/*", "front/*", "docs/*"],
|
||||||
"additionalBranchPrefix": "{{parentDir}}-",
|
"additionalBranchPrefix": "{{parentDir}}-",
|
||||||
"semanticCommitScope": "{{parentDir}}"
|
"semanticCommitScope": "{{parentDir}}"
|
||||||
},
|
},
|
||||||
|
@ -54,8 +54,8 @@
|
||||||
"addLabels": ["Area::Backend"]
|
"addLabels": ["Area::Backend"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matchPackagePatterns": ["^@vueuse/.*"],
|
"groupName": "vueuse",
|
||||||
"groupName": "vueuse"
|
"matchPackageNames": ["/^@vueuse/.*/"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matchPackageNames": ["channels", "channels-redis", "daphne"],
|
"matchPackageNames": ["channels", "channels-redis", "daphne"],
|
||||||
|
@ -66,7 +66,7 @@
|
||||||
"allowedVersions": "/\\d+[02468]$/"
|
"allowedVersions": "/\\d+[02468]$/"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matchFiles": ["deploy/docker-compose.yml"],
|
"matchFileNames": ["deploy/docker-compose.yml"],
|
||||||
"matchPackageNames": ["postgres"],
|
"matchPackageNames": ["postgres"],
|
||||||
"postUpgradeTasks": {
|
"postUpgradeTasks": {
|
||||||
"commands": [
|
"commands": [
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -51,7 +51,7 @@ package:
|
||||||
zip -q 'funkwhale-front.zip' -r front && \
|
zip -q 'funkwhale-front.zip' -r front && \
|
||||||
rm -Rf front
|
rm -Rf front
|
||||||
|
|
||||||
cd '$(BUILD_DIR)' && \
|
# cd '$(BUILD_DIR)' && \
|
||||||
cp ../front/tauri/target/release/bundle/appimage/funkwhale_*.AppImage FunkwhaleDesktop.AppImage
|
# cp ../front/tauri/target/release/bundle/appimage/funkwhale_*.AppImage FunkwhaleDesktop.AppImage
|
||||||
|
|
||||||
cd '$(BUILD_DIR)' && sha256sum * > SHA256SUMS
|
cd '$(BUILD_DIR)' && sha256sum * > SHA256SUMS
|
||||||
|
|
Loading…
Reference in New Issue