build: Debug
This commit is contained in:
parent
13b0844b9d
commit
5db324c8f6
1 changed files with 8 additions and 8 deletions
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
|
@ -71,14 +71,14 @@ jobs:
|
||||||
TAGS+=("ghcr.io/${{ github.repository }}:${VERSION}")
|
TAGS+=("ghcr.io/${{ github.repository }}:${VERSION}")
|
||||||
|
|
||||||
LABELS=()
|
LABELS=()
|
||||||
LABELS=("'org.opencontainers.image.licenses=\"MIT\"'")
|
#LABELS=("org.opencontainers.image.licenses=MIT")
|
||||||
LABELS+=("'org.opencontainers.image.title=${TITLE//\'/}'")
|
#LABELS+=("org.opencontainers.image.title=${TITLE//\"/}")
|
||||||
LABELS+=("'org.opencontainers.image.description=${DESC//\'/}'")
|
LABELS+=("org.opencontainers.image.description=${DESC//\"/}")
|
||||||
LABELS+=("'org.opencontainers.image.version=\"${VERSION}\"'")
|
LABELS+=("org.opencontainers.image.version=${VERSION}")
|
||||||
LABELS+=("'org.opencontainers.image.created=\"${BUILD_DATE}\"'")
|
LABELS+=("org.opencontainers.image.created=${BUILD_DATE}")
|
||||||
LABELS+=("'org.opencontainers.image.revision=\"${GITHUB_RUN_ID}\"'")
|
LABELS+=("org.opencontainers.image.revision=${GITHUB_RUN_ID}")
|
||||||
LABELS+=("'org.opencontainers.image.url=\"https://hub.docker.com/r/${{ secrets.DOCKERHUB_REPO }}/\"'")
|
LABELS+=("org.opencontainers.image.url=https://hub.docker.com/r/${{ secrets.DOCKERHUB_REPO }}")
|
||||||
LABELS+=("'org.opencontainers.image.source=\"https://github.com/${{ github.repository }}/\"'")
|
LABELS+=("org.opencontainers.image.source=https://github.com/${{ github.repository }}")
|
||||||
|
|
||||||
set -x
|
set -x
|
||||||
docker buildx build --progress=plain \
|
docker buildx build --progress=plain \
|
||||||
|
|
Loading…
Reference in a new issue