feat: added basic music controls, added music, added gitlab-ci.yml updated README.md
This commit is contained in:
parent
a9c4fe5da3
commit
8280620091
18 changed files with 553 additions and 73 deletions
34
.gitlab-ci.yml
Normal file
34
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,34 @@
|
|||
#image: ${CI_DEPENDENCY_PROXY_DIRECT_GROUP_IMAGE_PREFIX}/gradle
|
||||
image: gradle
|
||||
|
||||
stages:
|
||||
- build
|
||||
- publish
|
||||
|
||||
variables:
|
||||
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
|
||||
GIT_SUBMODULE_STRATEGY: recursive
|
||||
|
||||
before_script:
|
||||
- export GRADLE_USER_HOME=`pwd`/.gradle
|
||||
- rm -f .gradle/caches/modules-2/modules-2.lock
|
||||
- rm -fr .gradle/caches/*/plugin-resolution/
|
||||
|
||||
cache:
|
||||
paths:
|
||||
- .gradle/wrapper
|
||||
- .gradle/caches
|
||||
- build
|
||||
|
||||
build:
|
||||
stage: build
|
||||
script:
|
||||
- gradle shadowJar
|
||||
except:
|
||||
- tags
|
||||
|
||||
publish:
|
||||
stage: publish
|
||||
script:
|
||||
- gradle publish
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue