Skip to content

fix(publisher): fix config struct tag for worker component (#181) #87

fix(publisher): fix config struct tag for worker component (#181)

fix(publisher): fix config struct tag for worker component (#181) #87

Workflow file for this run

name: Skaffold - release
on:
workflow_dispatch:
push:
tags:
- v*
branches:
- main
paths:
- .github/workflows/release.yml
- "**/Dockerfile"
- "**/*.go"
- "**/*.gomod"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
name: Skaffold Build
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout sources
uses: actions/checkout@v4
with: # we need it for skaffold build
fetch-depth: "0"
fetch-tags: "true"
- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
cloudevents-server:
- 'cloudevents-server/**'
tibuild:
- 'tibuild/**'
dl:
- 'dl/**'
publisher:
- 'publisher/**'
# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
driver-opts: |
image=moby/buildkit:v0.12.4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Setup skaffold
run: |
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/v2.8.0/skaffold-linux-amd64 && \
sudo install skaffold /usr/local/bin/
- name: Publish image - cloudevents-server
if: steps.changes.outputs.cloudevents-server == 'true'
working-directory: cloudevents-server
run: |
skaffold build --default-repo ghcr.io/pingcap-qe/ee-apps
- name: Publish image - tibuild
if: steps.changes.outputs.tibuild == 'true'
working-directory: tibuild
run: |
skaffold build --default-repo ghcr.io/pingcap-qe/ee-apps
- name: Publish image - dl
if: steps.changes.outputs.dl == 'true'
working-directory: dl
run: |
skaffold build --default-repo ghcr.io/pingcap-qe/ee-apps
- name: Publish image - publisher
if: steps.changes.outputs.publisher == 'true'
working-directory: publisher
run: |
skaffold build --default-repo ghcr.io/pingcap-qe/ee-apps