[CI] Add publish step in docker-sonic-mgmt azure pipeline (#7902)

This commit is contained in:
Shilong Liu 2021-06-18 01:26:21 +08:00 committed by GitHub
parent 4e206ba36e
commit 52c721887e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,6 +43,7 @@ stages:
set -xe set -xe
make configure PLATFORM=generic make configure PLATFORM=generic
make target/docker-sonic-mgmt.gz make target/docker-sonic-mgmt.gz
cp target -r $(Build.ArtifactStagingDirectory)/target
docker load -i target/docker-sonic-mgmt.gz docker load -i target/docker-sonic-mgmt.gz
docker tag docker-sonic-mgmt $REGISTRY_SERVER/docker-sonic-mgmt:latest docker tag docker-sonic-mgmt $REGISTRY_SERVER/docker-sonic-mgmt:latest
env: env:
@ -55,3 +56,7 @@ stages:
repository: docker-sonic-mgmt repository: docker-sonic-mgmt
command: push command: push
tags: latest tags: latest
- publish: $(Build.ArtifactStagingDirectory)
artifact: 'docker-sonic-mgmt'
displayName: "Archive docker image sonic-mgmt"