Skip to content

Commit 5f59b6c

Browse files
authored
Update build.yml
1 parent 886aee4 commit 5f59b6c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ jobs:
4747
- name: Checkout
4848
uses: actions/checkout@v4
4949

50+
- name: Login into Docker Hub
51+
run: echo "${{ secrets.DOCKER_HUB_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_HUB_USERNAME }}" --password-stdin
52+
5053
- name: Login into Github Docker Registery
5154
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
5255

@@ -58,7 +61,9 @@ jobs:
5861

5962
- uses: docker/build-push-action@v5
6063
with:
61-
tags: ghcr.io/friendsofshopware/shopware-demo-environment:${{ matrix.minorShopwareVersion }}
64+
tags: |
65+
ghcr.io/friendsofshopware/shopware-demo-environment:${{ matrix.minorShopwareVersion }}
66+
friendsofshopware/shopware-demo-environment:${{ matrix.minorShopwareVersion }}
6267
platforms: linux/amd64,linux/arm64
6368
build-args: |
6469
PHP_VERSION=${{ matrix.phpVersion }}

0 commit comments

Comments
 (0)