Last cleanup for master

This commit is contained in:
frikky
2020-12-06 17:44:52 +01:00
parent feae9de626
commit cb01fd2cc7
2 changed files with 7 additions and 3 deletions
+5 -1
View File
@@ -5391,6 +5391,7 @@ func iterateWorkflowGithubFolders(fs billy.Filesystem, dir []os.FileInfo, extra
type buildLaterStruct struct { type buildLaterStruct struct {
Tags []string Tags []string
Extra string Extra string
Id string
} }
// Onlyname is used to // Onlyname is used to
@@ -5635,11 +5636,14 @@ func iterateAppGithubFolders(fs billy.Filesystem, dir []os.FileInfo, extra strin
//log.Printf("Added %s:%s to the database", workflowapp.Name, workflowapp.AppVersion) //log.Printf("Added %s:%s to the database", workflowapp.Name, workflowapp.AppVersion)
reservedFound := false // ID can be used to e.g. set a build status.
buildLater := buildLaterStruct{ buildLater := buildLaterStruct{
Tags: tags, Tags: tags,
Extra: extra, Extra: extra,
Id: workflowapp.ID,
} }
reservedFound := false
for _, appname := range reservedNames { for _, appname := range reservedNames {
if strings.ToUpper(workflowapp.Name) == strings.ToUpper(appname) { if strings.ToUpper(workflowapp.Name) == strings.ToUpper(appname) {
buildLaterList = append(buildLaterList, buildLater) buildLaterList = append(buildLaterList, buildLater)
+2 -2
View File
@@ -1,7 +1,7 @@
version: '3' version: '3'
services: services:
frontend: frontend:
build: ./frontend #build: ./frontend
image: ghcr.io/frikky/shuffle-frontend:0.8.3 image: ghcr.io/frikky/shuffle-frontend:0.8.3
container_name: shuffle-frontend container_name: shuffle-frontend
hostname: shuffle-frontend hostname: shuffle-frontend
@@ -16,7 +16,7 @@ services:
depends_on: depends_on:
- backend - backend
backend: backend:
build: ./backend #build: ./backend
image: ghcr.io/frikky/shuffle-backend:0.8.3 image: ghcr.io/frikky/shuffle-backend:0.8.3
container_name: shuffle-backend container_name: shuffle-backend
hostname: ${BACKEND_HOSTNAME} hostname: ${BACKEND_HOSTNAME}