fix: move predicate publishing rate parameter to base controller (#168) #85
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 release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
check-version: | |
name: Check if the version has been updated | |
outputs: | |
has_changed: ${{ steps.check.outputs.has_changed }} | |
version: ${{ steps.check.outputs.version }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: aica-technology/.github/.github/actions/[email protected] | |
id: check | |
with: | |
package_path: . | |
metadata: | |
name: Get metadata | |
needs: check-version | |
runs-on: ubuntu-latest | |
outputs: | |
image_name: ${{ steps.ensure-image.outputs.image_name }} | |
image_tags: ${{ steps.tags.outputs.image_tags }} | |
create_tag: ${{ steps.tags.outputs.create_tag }} | |
git_tag: ${{ steps.tags.outputs.git_tag }} | |
steps: | |
- uses: aica-technology/.github/.github/actions/[email protected] | |
id: ensure-image | |
with: | |
image_name: aica-technology/modulo | |
- run: | | |
CREATE_TAG=false | |
GIT_TAG="" | |
if [ ${{ needs.check-version.outputs.has_changed }} = 'true' ]; then | |
CREATE_TAG=true | |
GIT_TAG="v${{ needs.check-version.outputs.version }}" | |
if [[ "${GIT_TAG}" == *"-"* ]]; then | |
IMAGE_TAGS="${GIT_TAG}",rolling | |
else | |
IMAGE_TAGS=latest,"${GIT_TAG}",rolling | |
fi | |
else | |
IMAGE_TAGS=rolling | |
fi | |
echo "Image tags: ${IMAGE_TAGS}" | |
echo "Create tag: ${CREATE_TAG}" | |
echo "Git tag: ${GIT_TAG}" | |
echo "image_tags=${IMAGE_TAGS}" >> $GITHUB_OUTPUT | |
echo "create_tag=${CREATE_TAG}" >> $GITHUB_OUTPUT | |
echo "git_tag=${GIT_TAG}" >> $GITHUB_OUTPUT | |
id: tags | |
shell: bash | |
build: | |
needs: metadata | |
strategy: | |
matrix: | |
arch: [amd64, arm64] | |
include: | |
- image: ubuntu-latest | |
- image: buildjet-8vcpu-ubuntu-2204-arm | |
arch: arm64 | |
runs-on: ${{ matrix.image }} | |
name: Build and publish (${{ matrix.arch }}) | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: aica-technology/.github/.github/actions/[email protected] | |
id: merge-tags | |
with: | |
list: ${{ needs.metadata.outputs.image_tags }} | |
suffixes: ${{ matrix.arch }} | |
glue_separator: "-" | |
- uses: aica-technology/.github/.github/actions/[email protected] | |
with: | |
dockerfile_path: aica-package.toml | |
image_name: ${{ needs.metadata.outputs.image_name }} | |
image_tags: ${{ steps.merge-tags.outputs.list }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
multi-arch: | |
runs-on: ubuntu-latest | |
name: Merge into a multi-arch image | |
needs: [ metadata, build ] | |
steps: | |
- uses: aica-technology/.github/.github/actions/[email protected] | |
with: | |
image_name: ${{ needs.metadata.outputs.image_name }} | |
image_tags: ${{ needs.metadata.outputs.image_tags }} | |
archs: amd64,arm64 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- if: needs.metadata.outputs.create_tag == 'true' | |
uses: aica-technology/.github/.github/actions/[email protected] | |
with: | |
tag: ${{ needs.metadata.outputs.git_tag }} |