pipeline runner
Some checks failed
S3 mount container image build / build (push) Failing after 8s

This commit is contained in:
Tanguy Herbron 2023-08-05 11:42:11 +02:00
parent bf6bb55243
commit 3f6fa8308d

View File

@ -16,7 +16,10 @@ jobs:
run: docker pull ubuntu:latest
- name: Var envs
run: export
- name: Make tag
id: tag_vars
run: echo "IMAGE_NAME=\"$(echo \"$GITHUB_REPOSITORY\" | tr '[:upper:]' '[:lower:])'\"" >> $GITHUB_OUTPUT
- name: Docker retag
run: docker tag ubuntu:latest $(echo "$GITHUB_REPOSITORY" | tr '[:upper:]' '[:lower:]'):latest
run: docker tag ubuntu:latest ${{ steps.tag_vars.outputs.IMAGE_NAME }}:latest
- name: Docker push
run: docker push $GITHUB_ACTION_REPOSITORY:latest