Skip to content
Snippets Groups Projects
Verified Commit 0cd46331 authored by Louis's avatar Louis :fire:
Browse files

Fix copied CI commands

parent e9094222
No related branches found
No related tags found
Loading
Pipeline #108 passed with stage
in 1 minute and 35 seconds
......@@ -16,7 +16,7 @@ x86:
tag=":$CI_COMMIT_REF_SLUG"
echo "Running on branch '$CI_COMMIT_BRANCH': tag = $tag"
fi
- docker build --pull -f x86.dockerfile -t "$CI_REGISTRY_IMAGE${tag}" .
- docker build --pull -t "$CI_REGISTRY_IMAGE${tag}" .
- docker push "$CI_REGISTRY_IMAGE${tag}"
rules:
- changes:
......@@ -41,7 +41,7 @@ arm64:
tag=":${CI_COMMIT_REF_SLUG}-arm64"
echo "Running on branch '$CI_COMMIT_BRANCH': tag = $tag"
fi
- docker build --pull -f arm64.dockerfile -t "$CI_REGISTRY_IMAGE${tag}" .
- docker build --pull -t "$CI_REGISTRY_IMAGE${tag}" .
- docker push "$CI_REGISTRY_IMAGE${tag}"
rules:
- changes:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment