1
0
mirror of https://github.com/qdm12/caddy-scratch.git synced 2022-03-12 19:25:15 +03:00

Maint: rename build_date to created

This commit is contained in:
Quentin McGaw (desktop)
2021-07-19 16:07:13 -04:00
parent cdbdda92f4
commit 8971f238af
2 changed files with 4 additions and 4 deletions

View File

@@ -40,7 +40,7 @@ jobs:
BRANCH=${GITHUB_REF#refs/heads/}
TAG=${GITHUB_REF#refs/tags/}
echo ::set-output name=commit::$(git rev-parse --short HEAD)
echo ::set-output name=build_date::$(date -u +%Y-%m-%dT%H:%M:%SZ)
echo ::set-output name=created::$(date -u +%Y-%m-%dT%H:%M:%SZ)
if [ "$TAG" != "$GITHUB_REF" ]; then
echo ::set-output name=version::$TAG
echo ::set-output name=platforms::linux/amd64,linux/386,linux/arm64,linux/arm/v7
@@ -56,7 +56,7 @@ jobs:
with:
platforms: ${{ steps.vars.outputs.platforms }}
build-args: |
BUILD_DATE=${{ steps.vars.outputs.build_date }}
CREATED=${{ steps.vars.outputs.created }}
COMMIT=${{ steps.vars.outputs.commit }}
VERSION=${{ steps.vars.outputs.version }}
tags: qmcgaw/caddy-scratch:${{ steps.vars.outputs.version }}

View File

@@ -17,11 +17,11 @@ RUN for plugin in $(echo $PLUGINS | tr "," " "); do withFlags="$withFlags --with
FROM scratch
ARG VERSION
ARG CADDY_VERSION
ARG BUILD_DATE
ARG CREATED
ARG COMMIT
LABEL \
org.opencontainers.image.authors="quentin.mcgaw@gmail.com" \
org.opencontainers.image.created=$BUILD_DATE \
org.opencontainers.image.created=$CREATED \
org.opencontainers.image.version=$VERSION \
org.opencontainers.image.revision=$COMMIT \
org.opencontainers.image.url="https://github.com/qdm12/caddy-scratch" \