release: version 7.4.0 #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Push | |
# Run workflow on pushes to main branch or by manual dispatch | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build-publish-proto-dependencies-focal-fossa: | |
name: Build and publish proto dependencies image on ubuntu 20.04 | |
uses: aica-technology/.github/.github/workflows/build-push-multi-arch.yml@v0.1 | |
with: | |
image_name: ${{ github.repository }}/proto-dependencies | |
image_tags: 20.04 | |
dockerfile_path: Dockerfile.proto | |
platforms: linux/amd64 | |
build_flags: '--build-arg BASE_TAG=20.04' | |
secrets: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
build-publish-proto-dependencies-jammy-jellyfish: | |
name: Build and publish proto dependencies image on ubuntu 22.04 | |
uses: aica-technology/.github/.github/workflows/build-push-multi-arch.yml@v0.1 | |
with: | |
image_name: ${{ github.repository }}/proto-dependencies | |
image_tags: 22.04,latest | |
platforms: linux/amd64,linux/arm64 | |
dockerfile_path: Dockerfile.proto | |
build_flags: '--build-arg BASE_TAG=22.04' | |
secrets: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
build-publish-development-dependencies-focal-fossa: | |
needs: build-publish-proto-dependencies-focal-fossa | |
uses: aica-technology/.github/.github/workflows/build-push-multi-arch.yml@v0.1 | |
with: | |
image_name: ${{ github.repository }}/development-dependencies | |
image_tags: 20.04 | |
platforms: linux/amd64 | |
dockerfile_path: Dockerfile.base | |
build_flags: '--build-arg BASE_TAG=20.04' | |
secrets: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
build-publish-development-dependencies-jammy-jellyfish: | |
needs: build-publish-proto-dependencies-jammy-jellyfish | |
uses: aica-technology/.github/.github/workflows/build-push-multi-arch.yml@v0.1 | |
with: | |
image_name: ${{ github.repository }}/development-dependencies | |
image_tags: 22.04,latest | |
platforms: linux/amd64,linux/arm64 | |
dockerfile_path: Dockerfile.base | |
build_flags: '--build-arg BASE_TAG=22.04' | |
secrets: | |
token: ${{ secrets.GITHUB_TOKEN }} |