Skip to content

Commit

Permalink
Merge branch 'main' into bob/2559-step-counter-implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
robertandremitchell authored Oct 16, 2024
2 parents 1ebd0d9 + af54b91 commit 2732c44
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 386 deletions.
82 changes: 0 additions & 82 deletions .github/workflows/buildReleaseContainers.yaml

This file was deleted.

43 changes: 43 additions & 0 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: CD

on:
merge_group:
types:
- checks_requested
push:
branches:
- main
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
name: Build Query Connector Image
runs-on: ubuntu-latest
permissions:
contents: "read"
id-token: "write"
packages: "write"
steps:
- name: Check Out Changes
uses: actions/checkout@v4

- 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: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v3
with:
context: ./query-connector
push: true
tags: ghcr.io/${{ github.repository }}/query-connector:main, ghcr.io/${{ github.repository }}/query-connector:latest
Loading

0 comments on commit 2732c44

Please sign in to comment.