Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
41a5c675bf | ||
|
|
ac9f896a22 | ||
|
|
36d57914b2 | ||
|
|
800ba5dd0d |
@@ -100,5 +100,6 @@ docker-registry-tags:
|
|||||||
before_script:
|
before_script:
|
||||||
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
|
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
|
||||||
script:
|
script:
|
||||||
|
- apk add git
|
||||||
- docker build --tag registry.gitlab.com/commento/commento-ce:$(git describe --tags) .
|
- docker build --tag registry.gitlab.com/commento/commento-ce:$(git describe --tags) .
|
||||||
- docker push registry.gitlab.com/commento/commento-ce:$(git describe --tags)
|
- docker push registry.gitlab.com/commento/commento-ce:$(git describe --tags)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
var edition = "ce"
|
var edition = "ce"
|
||||||
var version = "v1.1.1"
|
var version = "v1.1.3"
|
||||||
|
|||||||
@@ -588,7 +588,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
cur.sort(function(a, b) {
|
cur.sort(function(a, b) {
|
||||||
return a.score - b.score;
|
return b.score - a.score;
|
||||||
});
|
});
|
||||||
|
|
||||||
var cards = create("div");
|
var cards = create("div");
|
||||||
|
|||||||
Reference in New Issue
Block a user