ci: variable for name
This commit is contained in:
parent
e6604b09af
commit
f3fdd46fc8
1 changed files with 10 additions and 10 deletions
|
@ -38,21 +38,21 @@ steps:
|
||||||
- source .variables
|
- source .variables
|
||||||
- |
|
- |
|
||||||
docker buildx build \
|
docker buildx build \
|
||||||
--tag registry.mgrote.net/nextcloud-cronjob \
|
--tag registry.mgrote.net/$CI_REPO_NAME \
|
||||||
--tag registry.mgrote.net/nextcloud-cronjob:${CI_COMMIT_SHA:0:8} \
|
--tag registry.mgrote.net/$CI_REPO_NAME:${CI_COMMIT_SHA:0:8} \
|
||||||
--tag registry.mgrote.net/nextcloud-cronjob:${CI_COMMIT_BRANCH} \
|
--tag registry.mgrote.net/$CI_REPO_NAME:${CI_COMMIT_BRANCH} \
|
||||||
--tag registry.mgrote.net/nextcloud-cronjob:latest \
|
--tag registry.mgrote.net/$CI_REPO_NAME:latest \
|
||||||
--tag registry.mgrote.net/nextcloud-cronjob:$VERSION \
|
--tag registry.mgrote.net/$CI_REPO_NAME:$VERSION \
|
||||||
--label org.opencontainers.image.url=$CI_REPO_URL \
|
--label org.opencontainers.image.url=$CI_REPO_URL \
|
||||||
--label org.opencontainers.image.source=$CI_REPO_URL \
|
--label org.opencontainers.image.source=$CI_REPO_URL \
|
||||||
--label org.opencontainers.image.revision=$CI_COMMIT_SHA \
|
--label org.opencontainers.image.revision=$CI_COMMIT_SHA \
|
||||||
--label org.opencontainers.image.created=$DATE \
|
--label org.opencontainers.image.created=$DATE \
|
||||||
--file Dockerfile .
|
--file Dockerfile .
|
||||||
- docker push registry.mgrote.net/nextcloud-cronjob:${CI_COMMIT_SHA:0:8}
|
- docker push registry.mgrote.net/$CI_REPO_NAME:${CI_COMMIT_SHA:0:8}
|
||||||
- docker push registry.mgrote.net/nextcloud-cronjob:${CI_COMMIT_BRANCH}
|
- docker push registry.mgrote.net/$CI_REPO_NAME:${CI_COMMIT_BRANCH}
|
||||||
- docker push registry.mgrote.net/nextcloud-cronjob:latest
|
- docker push registry.mgrote.net/$CI_REPO_NAME:latest
|
||||||
- docker push registry.mgrote.net/nextcloud-cronjob:$VERSION
|
- docker push registry.mgrote.net/$CI_REPO_NAME:$VERSION
|
||||||
- docker push registry.mgrote.net/nextcloud-cronjob
|
- docker push registry.mgrote.net/$CI_REPO_NAME
|
||||||
when:
|
when:
|
||||||
- evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
|
- evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
|
||||||
...
|
...
|
||||||
|
|
Loading…
Reference in a new issue