forked from oci/template
buildx test
This commit is contained in:
parent
899b75f47d
commit
24dc908e42
1 changed files with 14 additions and 12 deletions
|
@ -21,20 +21,22 @@ jobs:
|
||||||
echo "REPO_HOST=$(echo "${{ github.server_url }}" | sed 's~http[s]*://~~g')" >> $GITHUB_ENV
|
echo "REPO_HOST=$(echo "${{ github.server_url }}" | sed 's~http[s]*://~~g')" >> $GITHUB_ENV
|
||||||
echo "REPO_PATH=${{ github.repository }}" >> $GITHUB_ENV
|
echo "REPO_PATH=${{ github.repository }}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Login to OCI registry
|
- name: Login to OCI registry
|
||||||
run: |
|
run: |
|
||||||
echo "${{ secrets.OCI_TOKEN }}" | docker login $REPO_HOST -u "${{ secrets.OCI_USER }}" --password-stdin
|
echo "${{ secrets.OCI_TOKEN }}" | docker login $REPO_HOST -u "${{ secrets.OCI_USER }}" --password-stdin
|
||||||
|
|
||||||
- name: Build and push Docker images
|
- name: Build and push multi-arch Docker images
|
||||||
run: |
|
run: |
|
||||||
# Build Docker image with commit SHA
|
docker buildx create --use
|
||||||
docker build -t $REPO_HOST/$REPO_PATH:${{ github.sha }} .
|
docker buildx build \
|
||||||
docker push $REPO_HOST/$REPO_PATH:${{ github.sha }}
|
--platform linux/amd64,linux/arm64 \
|
||||||
|
--tag $REPO_HOST/$REPO_PATH:${{ github.sha }} \
|
||||||
|
--tag $REPO_HOST/$REPO_PATH:nightly \
|
||||||
|
--push \
|
||||||
|
.
|
||||||
|
|
||||||
# Build Docker image with nightly tag
|
- name: Remove builder (optional cleanup)
|
||||||
docker tag $REPO_HOST/$REPO_PATH:${{ github.sha }} $REPO_HOST/$REPO_PATH:nightly
|
run: docker buildx rm
|
||||||
docker push $REPO_HOST/$REPO_PATH:nightly
|
|
||||||
|
|
||||||
# Remove local images to save storage
|
|
||||||
docker rmi $REPO_HOST/$REPO_PATH:${{ github.sha }}
|
|
||||||
docker rmi $REPO_HOST/$REPO_PATH:nightly
|
|
||||||
|
|
Loading…
Reference in a new issue