Skip to content

Commit d9cf926

Browse files
committed
create combined manifest latest
1 parent 422aa44 commit d9cf926

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/publish.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,20 @@ jobs:
4444
push: true
4545
tags: blakadder/docker-tasmota:latest-arm64
4646

47+
create-manifest:
48+
name: Create Multi-Arch Manifest
49+
runs-on: ubuntu-latest
50+
needs: [build-amd64, build-arm64]
51+
steps:
52+
- name: Login to Docker Hub
53+
uses: docker/login-action@v3
54+
with:
55+
username: ${{ secrets.DOCKER_USERNAME }}
56+
password: ${{ secrets.DOCKER_PASSWORD }}
57+
- name: Create and Push Manifest
58+
run: |
59+
docker manifest create blakadder/docker-tasmota:latest \
60+
blakadder/docker-tasmota:latest-amd64 \
61+
blakadder/docker-tasmota:latest-arm64
62+
docker manifest push blakadder/docker-tasmota:latest
63+

0 commit comments

Comments
 (0)