chore:updated CI

This commit is contained in:
WinterMyst 2024-09-22 15:57:37 +02:00
parent 0dabdc9e89
commit f90e6899f3
2 changed files with 5 additions and 5 deletions

View File

@ -62,7 +62,7 @@ release:
"assets": { "assets": {
"links": [ "links": [
{ {
"name": "Download kids-on-brooms.zip", "name": "Download kidsonbrooms.zip",
"url": "https://gitlab.com/YOUR_NAMESPACE/YOUR_PROJECT/-/jobs/$CI_JOB_ID/artifacts/download" "url": "https://gitlab.com/YOUR_NAMESPACE/YOUR_PROJECT/-/jobs/$CI_JOB_ID/artifacts/download"
} }
] ]
@ -92,8 +92,8 @@ release:
"id": "Your-Package-ID", "id": "Your-Package-ID",
"release": { "release": {
"version": "'$VERSION'", "version": "'$VERSION'",
"manifest": "https://gitlab.com/wintermyst/kids-on-brooms/-/raw/master/system.json", "manifest": "https://gitlab.com/wintermyst/kids-nbrooms/-/raw/master/system.json",
"notes": "https://gitlab.com/wintermyst/kids-on-brooms/releases/tag/v'$VERSION'", "notes": "https://gitlab.com/wintermyst/kidsonbrooms/releases/tag/v'$VERSION'",
"compatibility": { "compatibility": {
"minimum": "12.331", "minimum": "12.331",
"verified": "12.331", "verified": "12.331",
@ -107,5 +107,5 @@ release:
allow_failure: false allow_failure: false
artifacts: artifacts:
paths: paths:
- kids-on-brooms.zip - kidsonbrooms.zip
expire_in: never expire_in: never

View File

@ -72,7 +72,7 @@ function zipRelease() {
'!./scss/**/*', '!./scss/**/*',
'!./.github/**/*', '!./.github/**/*',
], { base: '.' }) ], { base: '.' })
.pipe(zip('kids-on-brooms.zip')) .pipe(zip('kidsonbrooms.zip'))
.pipe(gulp.dest('.')); .pipe(gulp.dest('.'));
} }