Skip to content

Commit

Permalink
refactor: update workflow to remove unused inputs (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
rdash99 authored Jul 18, 2024
1 parent 1eea4c6 commit 6e8a7ee
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/multi-container-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,20 @@ name: Build multiple containers

on:
pull_request:
# Ignore PRs on branches specifically intended for other assets
branches-ignore:
- '*/trino-container*'
- '*/fizzbuzz-chart*'
- '*/fizzbuzz-crds-chart*'
# Only consider PRs that change files for this asset, including ci scripts
paths:
- '.github/workflows/flake8.yaml'
- '.github/workflows/multi-container-test.yaml'
- 'containers/controller/**'
- 'containers/trino/**'
- 'charts/fizzbuzz/**'
# Make sure all workflows that are "required checks" for a given
# branch protection rule have the same paths: and branches-ignore:
# filters. Otherwise, you can end up in a deadlock waiting on a
# required check that will never be executed.
push:
# Only release off of release and maintenance branches for this asset
branches:
- 'maintenance/controller-container/[0-9]+.x.x'
- 'maintenance/controller-container/[0-9]+.[0-9]+.x'
- 'main'
# Only consider pushes that change files for this asset, including ci scripts
paths:
Expand Down Expand Up @@ -60,7 +54,6 @@ jobs:
registry: ${{ vars.HARBOR_REGISTRY }}
registry-user: ${{ vars.HARBOR_USER }}
registry-repo: ${{ vars.HARBOR_PROJECT }}/controller
release-tag-format: 'v${version}-controller-container'
release-info: ${{ needs.setup-release.outputs.release-info }}
cosign-public-key: ${{ vars.COSIGN_PUBLIC_KEY }}
build-file: containers/controller/Dockerfile
Expand All @@ -80,7 +73,6 @@ jobs:
registry: ${{ vars.HARBOR_REGISTRY }}
registry-user: ${{ vars.HARBOR_USER }}
registry-repo: ${{ vars.HARBOR_PROJECT }}/trino
release-tag-format: 'v${version}-trino-container'
registry-extra-tag-command: >-
cat containers/trino/Dockerfile | grep -m 1 "ARG BASE_VERSION=" | cut -d "=" -f 2
release-info: ${{ needs.setup-release.outputs.release-info }}
Expand All @@ -103,7 +95,6 @@ jobs:
registry-user: ${{ vars.HARBOR_USER }}
registry-project: ${{ vars.HARBOR_PROJECT }}
registry-repo: fizzbuzz
release-tag-format: 'v${version}-fizzbuzz-chart'
release-info: ${{ needs.setup-release.outputs.release-info }}
cosign-public-key: ${{ vars.COSIGN_PUBLIC_KEY }}
chart: charts/fizzbuzz
Expand Down

0 comments on commit 6e8a7ee

Please sign in to comment.