chore: fix push ricebox
License: MIT Signed-off-by: Henrique Dias <hacdias@gmail.com> Former-commit-id: aadad9829076baffe239bbb87a2edc6565236710 [formerly 5f7905abd73a12f695081bdf16c08c88a39cc85e] [formerly ba5ff2c403dad0cbd3ec85c189193aa613834490 [formerly 549dec46e0f5e061b73dfa1c747a9b340d89b556]] Former-commit-id: 222f34123a2247808f3512c5d4cfd21d47ae56ed [formerly 53e355ebdf6bfe6e2c26614e492047a66a44e308] Former-commit-id: e9f355cddfb848ad07f038e6bfb7c5c1f45f057d
This commit is contained in:
parent
4c64aa7d11
commit
331c7bf387
2
frontend
2
frontend
|
@ -1 +1 @@
|
|||
Subproject commit 3ed2144a0e7e9c36c7c09aab911e3111827b55a2
|
||||
Subproject commit df42e352f779eecf472b840405c20d21e94bc379
|
11
wizard.sh
11
wizard.sh
|
@ -8,6 +8,7 @@ LINT="false"
|
|||
BUILD="false"
|
||||
PUSH_LATEST="false"
|
||||
RELEASE=""
|
||||
GO111MODULES="on"
|
||||
|
||||
debugInfo () {
|
||||
echo "Repo: $REPO"
|
||||
|
@ -133,6 +134,14 @@ pushRicebox () {
|
|||
cd caddy
|
||||
cp ../http/rice-box.go ./
|
||||
sed -i 's/package http/package caddy/g' ./rice-box.go
|
||||
|
||||
docker run --rm -t \
|
||||
-v $(pwd):/src \
|
||||
-w /src \
|
||||
-v /var/run/docker.sock:/var/run/docker.sock \
|
||||
filebrowser/dev \
|
||||
sh -c "go get -u"
|
||||
|
||||
git checkout -b update-rice-box origin/master
|
||||
git config --local user.name "Filebrowser Bot"
|
||||
git config --local user.email "FilebrowserBot@users.noreply.github.com"
|
||||
|
@ -169,8 +178,8 @@ ciRelease () {
|
|||
goreleaser \
|
||||
"
|
||||
|
||||
dockerPushTag
|
||||
pushRicebox
|
||||
dockerPushTag
|
||||
}
|
||||
|
||||
build () {
|
||||
|
|
Loading…
Reference in New Issue