compatibility: lower boolean values in env

This commit is contained in:
lanvent
2023-03-31 15:13:28 +08:00
parent 37a95980d4
commit 4ad2997717
2 changed files with 7 additions and 3 deletions

View File

@@ -12,8 +12,7 @@ name: Create and publish a Docker image
on: on:
push: push:
branches: ['master'] branches: ['master']
release: create:
types: [published]
env: env:
REGISTRY: ghcr.io REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }} IMAGE_NAME: ${{ github.repository }}

View File

@@ -124,7 +124,12 @@ def load_config():
try: try:
config[name] = eval(value) config[name] = eval(value)
except: except:
config[name] = value if value == "false":
config[name] = False
elif value == "true":
config[name] = True
else:
config[name] = value
logger.info("[INIT] load config: {}".format(config)) logger.info("[INIT] load config: {}".format(config))