Merge branch 'SillyTavern:release' into sampler-order-ooba
This commit is contained in:
commit
0d8858285f
|
@ -4,8 +4,8 @@ name: Create Docker Image on Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
release:
|
release:
|
||||||
# Only runs on full releases not pre releases
|
# Allow pre-releases
|
||||||
types: [released]
|
types: [published]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# This should allow creation of docker images even in forked repositories
|
# This should allow creation of docker images even in forked repositories
|
||||||
|
|
|
@ -34,7 +34,8 @@ RUN \
|
||||||
rm -f "config.yaml" "public/settings.json" || true && \
|
rm -f "config.yaml" "public/settings.json" || true && \
|
||||||
ln -s "./config/config.yaml" "config.yaml" || true && \
|
ln -s "./config/config.yaml" "config.yaml" || true && \
|
||||||
ln -s "../config/settings.json" "public/settings.json" || true && \
|
ln -s "../config/settings.json" "public/settings.json" || true && \
|
||||||
mkdir "config" || true
|
mkdir "config" || true && \
|
||||||
|
mkdir -p "public/user" || true
|
||||||
|
|
||||||
# Cleanup unnecessary files
|
# Cleanup unnecessary files
|
||||||
RUN \
|
RUN \
|
||||||
|
|
Loading…
Reference in New Issue