ci: remove dev branch and beta docker tag

This commit is contained in:
Gauthier Roebroeck 2020-02-17 10:22:21 +08:00
parent b9d756b9d1
commit 532aa77129
4 changed files with 4 additions and 13 deletions

View file

@ -22,10 +22,5 @@ jobs:
jdk: openjdk8
install:
- npm install --only=production
script:
- npx semantic-release
script: skip
deploy:
- provider: script
script: .travis/deploy-dockerhub-dev.sh
on:
branch: dev

View file

@ -1,4 +0,0 @@
#!/usr/bin/env bash
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
./gradlew copyWebDist && ./gradlew dockerPushBeta

View file

@ -10,10 +10,11 @@
This image provides various versions that are available via tags.
:warning: the `beta` tag has been removed, use `latest` instead.
|**Tag** |**Description** |
|:------:|------------------------|
|`beta` |build from latest commit|
|`latest`|latest stable release |
|`latest` |build from latest commit|
|`x.y.z` |version `x.y.z` |
## Usage

View file

@ -170,7 +170,6 @@ configure<DockerExtension> {
name = "gotson/komga"
tag("latest", "$name:latest")
tag("semVer", "$name:$version")
tag("beta", "$name:beta")
copySpec.from(tasks.getByName("unpack").outputs).into("dependency")
buildArgs(mapOf("DEPENDENCY" to "dependency"))
}