Skip to content

Commit

Permalink
Update build-and-publish-docker-images.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Freezor authored Jun 19, 2024
1 parent c47f630 commit 0bce572
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-and-publish-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build and publish docker images when release is published
on:
release:
types: [ published ]

workflow_dispatch:
jobs:
Build-and-publish-docker-images:
runs-on: ubuntu-latest
Expand All @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@master

- name: Build and publish AasxServerBlazor
uses: docker/build-push-action@v2
uses: docker/build-push-action@v1
with:
username: adminshellio
password: ${{ secrets.DOCKERHUB_PASSWORD }}
Expand All @@ -22,7 +22,7 @@ jobs:
dockerfile: src/docker/Dockerfile-AasxServerBlazor

- name: Build and publish AasxServerBlazor-arm32
uses: docker/build-push-action@v2
uses: docker/build-push-action@v1
with:
username: adminshellio
password: ${{ secrets.DOCKERHUB_PASSWORD }}
Expand All @@ -31,7 +31,7 @@ jobs:
dockerfile: src/docker/Dockerfile-AasxServerBlazor-arm32

- name: Build and publish AasxServerBlazor-arm64
uses: docker/build-push-action@v2
uses: docker/build-push-action@v1
with:
username: adminshellio
password: ${{ secrets.DOCKERHUB_PASSWORD }}
Expand All @@ -40,7 +40,7 @@ jobs:
dockerfile: src/docker/Dockerfile-AasxServerBlazor-arm64

- name: Build and publish AasxServerCore
uses: docker/build-push-action@v2
uses: docker/build-push-action@v1
with:
username: adminshellio
password: ${{ secrets.DOCKERHUB_PASSWORD }}
Expand All @@ -49,7 +49,7 @@ jobs:
dockerfile: src/docker/Dockerfile-AasxServerAspNetCore

- name: Build and publish AasxServerCore-arm32
uses: docker/build-push-action@v2
uses: docker/build-push-action@v1
with:
username: adminshellio
password: ${{ secrets.DOCKERHUB_PASSWORD }}
Expand All @@ -58,10 +58,10 @@ jobs:
dockerfile: src/docker/Dockerfile-AasxServerAspNetCore-arm32

- name: Build and publish AasxServerCore-arm64
uses: docker/build-push-action@v2
uses: docker/build-push-action@v1
with:
username: adminshellio
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: adminshellio/aasx-aspnetcore-for-demo-arm64
tags: v3latest
dockerfile: src/docker/Dockerfile-AasxServerAspNetCore-arm64
dockerfile: src/docker/Dockerfile-AasxServerAspNetCore-arm64

0 comments on commit 0bce572

Please sign in to comment.