Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-44270: Use build-and-push-to-ghcr #3

Open
wants to merge 5 commits into
base: release
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 34 additions & 40 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,65 +2,59 @@ name: CI

"on":
merge_group: {}
pull_request:
branches:
- "tickets/*"
pull_request: {}
push:
branches-ignore:
# These should always correspond to pull requests, so ignore them for
# the push trigger and let them be triggered by the pull_request
# trigger, avoiding running the workflow twice. This is a minor
# optimization so there's no need to ensure this is comprehensive.
- "dependabot/**"
- "gh-readonly-queue/**"
- "renovate/**"
tags:
- "*"

jobs:

build:

runs-on: ubuntu-latest

# Only do Docker builds of tagged releases and pull requests from ticket
# branches. This will still trigger on pull requests from untrusted
# repositories whose branch names match our tickets/* branch convention,
# but in this case the build will fail with an error since the secret
# won't be set.
# (optional) only build on tags or ticket branches
if: >
startsWith(github.ref, 'refs/tags/')
|| startsWith(github.head_ref, 'tickets/')

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Define the tag
id: tag
shell: bash
run: echo "tag=`bash scripts/docker-tag.sh`" >> ${GITHUB_OUTPUT}

- name: Set up Java
uses: actions/setup-java@v2
with:
fetch-depth: 0

- name: Define the Docker tag
id: vars
run: echo ::set-output name=tag::$(scripts/docker-tag.sh)

- name: Print the tag
id: print
run: echo ${{ steps.vars.outputs.tag }}
distribution: 'adopt-openj9'
java-version: '17'

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: |
ghcr.io/lsst-sqre/strimzi-access-operator:${{ steps.vars.outputs.tag }}
cache-from: type=gha
cache-to: type=gha,mode=max

- name: Build
run: |
make MVN_ARGS='-DskipTests -DskipITs' all
env:
DOCKER_ORG: lsst-sqre
PROJECT_NAME: kafka-access-operator
DOCKER_REGISTRY: ghcr.io

# - name: Build and push
# id: build
# uses: docker/build-push-action@v5
# with:
# context: "."
# file: "Dockerfile"
# tags: |
# ghcr.io/lsst-sqre/kafka-access-operator:${{ steps.tag.outputs.tag }}
# cache-from: type=gha
# cache-to: type=gha,mode=max
Loading