Skip to content

try to fix ci

try to fix ci #173

Workflow file for this run

name: create and push docker images
on:
workflow_dispatch:
pull_request:
push:
branches:
- develop
paths-ignore:
- "README.md"
- ".github/workflows/python-**.yaml"
- ".github/workflows/deploy-**.yaml"
- ".github/workflows/json-schema-generation.yaml"
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
permissions:
contents: read
packages: write
jobs:
build-and-push-image:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- dockerfile: ./docker/cli/Dockerfile-slim
image: ghcr.io/${{ github.repository }}/cli
watches:
- "docker/cli/**"
- "cli/**"
- dockerfile: ./docker/worker/Dockerfile
image: ghcr.io/${{ github.repository }}/worker
watches:
- "docker/worker/**"
- dockerfile: ./docker/bamboo-generator/Dockerfile
image: ghcr.io/${{ github.repository }}/bamboo-generator
watches:
- "docker/bamboo-generator/**"
- "bamboo-generator/**"
- dockerfile: ./docker/api/Dockerfile-slim
image: ghcr.io/${{ github.repository }}/api
watches:
- "docker/api/**"
- "api/**"
- dockerfile: ./docker/playground/Dockerfile
image: ghcr.io/${{ github.repository }}/playground
watches:
- "docker/playground/**"
- "playground/**"
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- id: files
uses: jitterbit/get-changed-files@v1
with:
format: 'csv'
- run: |
mapfile -d ',' -t added_modified_files < <(printf '%s,' '${{ steps.files.outputs.added_modified }}')
for added_modified_file in "${added_modified_files[@]}"; do
echo "Do something with this ${added_modified_file}."
done
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Compute Tag
uses: actions/github-script@v7
id: compute-tag
with:
result-encoding: string
script: |
if (context.eventName === "pull_request") {
return "pr-" + context.issue.number;
}
if (context.eventName === "release") {
return "latest";
}
if (context.eventName === "push") {
if (context.ref.startsWith("refs/tags/")) {
return context.ref.slice(10);
}
if (context.ref === "refs/heads/develop") {
return "nightly";
}
}
return "FALSE";
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ matrix.image }}
tags: |
# set latest tag for default branch
type=raw,value={{date 'YYYYMMDD-hhmmss' tz='Europe/Berlin'}}
type=ref,event=pr
type=sha
type=raw,value={{steps.compute-tag.outputs.result}}
type=raw,value=nightly,enable={{is_default_branch}}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ${{ matrix.dockerfile }}
platforms: linux/amd64,linux/arm64
if: ${{ steps.files.outputs.added_modified.match(matrix.matches) }}

Check failure on line 121 in .github/workflows/build-and-push.yaml

View workflow run for this annotation

GitHub Actions / create and push docker images

Invalid workflow file

The workflow is not valid. .github/workflows/build-and-push.yaml (Line: 121, Col: 15): Unexpected symbol: '('. Located at position 41 within expression: steps.files.outputs.added_modified.match(matrix.matches)
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=min