Skip to content

Commit

Permalink
DockerHub
Browse files Browse the repository at this point in the history
DockerHub
  • Loading branch information
AlexanderWollbrink committed Sep 8, 2023
1 parent 6e57454 commit 18cddf4
Showing 1 changed file with 45 additions and 45 deletions.
90 changes: 45 additions & 45 deletions .github/workflows/build-and-publish-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,71 +2,71 @@ name: Build-and-publish-docker-images-workflow

on:
push:
branches:
- main
- master
- '*/Fix-*-docker*'
- jtikekar/masterV3.0

release:
types: [published]

jobs:
Build-and-publish-docker-images:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.body, 'The workflow build-and-publish-docker-images was intentionally skipped.') == false
if: |
contains(github.event.pull_request.body, 'The workflow build-and-publish-docker-images was intentionally skipped.') == false &&
contains(github.event.head_commit.message, 'DockerHub')
steps:
- uses: actions/checkout@master

- name: Build and publish AasxServerBlazor
uses: docker/build-push-action@v1
with:
username: adminshellio
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: adminshellio/aasx-server-blazor-for-demo
tag_with_ref: true
dockerfile: src/docker/Dockerfile-AasxServerBlazor
# - name: Build and publish AasxServerBlazor
# uses: docker/build-push-action@v1
# with:
# username: adminshellio
# password: ${{ secrets.DOCKERHUB_PASSWORD }}
# repository: adminshellio/aasx-server-blazor-for-demo
# tag_with_ref: true
# dockerfile: src/docker/Dockerfile-AasxServerBlazor

- name: Build and publish AasxServerBlazor-arm32
uses: docker/build-push-action@v1
with:
username: adminshellio
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: adminshellio/aasx-server-blazor-for-demo-arm32
tags: v3latest
tag_with_ref: true
dockerfile: src/docker/Dockerfile-AasxServerBlazor-arm32

- name: Build and publish AasxServerBlazor-arm64
uses: docker/build-push-action@v1
with:
username: adminshellio
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: adminshellio/aasx-server-blazor-for-demo-arm64
tag_with_ref: true
dockerfile: src/docker/Dockerfile-AasxServerBlazor-arm64
# - name: Build and publish AasxServerBlazor-arm64
# uses: docker/build-push-action@v1
# with:
# username: adminshellio
# password: ${{ secrets.DOCKERHUB_PASSWORD }}
# repository: adminshellio/aasx-server-blazor-for-demo-arm64
# tag_with_ref: true
# dockerfile: src/docker/Dockerfile-AasxServerBlazor-arm64

- name: Build and publish AasxServerCore
uses: docker/build-push-action@v1
with:
username: adminshellio
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: adminshellio/aasx-server-core-for-demo
tag_with_ref: true
dockerfile: src/docker/Dockerfile-AasxServerCore
# - name: Build and publish AasxServerCore
# uses: docker/build-push-action@v1
# with:
# username: adminshellio
# password: ${{ secrets.DOCKERHUB_PASSWORD }}
# repository: adminshellio/aasx-server-core-for-demo
# tag_with_ref: true
# dockerfile: src/docker/Dockerfile-AasxServerCore

- name: Build and publish AasxServerCore-arm32
uses: docker/build-push-action@v1
with:
username: adminshellio
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: adminshellio/aasx-server-core-for-demo-arm32
tag_with_ref: true
dockerfile: src/docker/Dockerfile-AasxServerCore-arm32
# - name: Build and publish AasxServerCore-arm32
# uses: docker/build-push-action@v1
# with:
# username: adminshellio
# password: ${{ secrets.DOCKERHUB_PASSWORD }}
# repository: adminshellio/aasx-server-core-for-demo-arm32
# tag_with_ref: true
# dockerfile: src/docker/Dockerfile-AasxServerCore-arm32

- name: Build and publish AasxServerCore-arm64
uses: docker/build-push-action@v1
with:
username: adminshellio
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: adminshellio/aasx-server-core-for-demo-arm64
tag_with_ref: true
dockerfile: src/docker/Dockerfile-AasxServerCore-arm64
# - name: Build and publish AasxServerCore-arm64
# uses: docker/build-push-action@v1
# with:
# username: adminshellio
# password: ${{ secrets.DOCKERHUB_PASSWORD }}
# repository: adminshellio/aasx-server-core-for-demo-arm64
# tag_with_ref: true
# dockerfile: src/docker/Dockerfile-AasxServerCore-arm64

0 comments on commit 18cddf4

Please sign in to comment.