Build and deploy Bay images #219
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-deploy-bay-images | |
run-name: Build and deploy Bay images | |
on: | |
pull_request: | |
types: | |
- closed | |
- opened | |
- synchronize | |
schedule: | |
- cron: '23 20 * * 0' | |
workflow_dispatch: | |
env: | |
REGISTRY: ghcr.io | |
jobs: | |
buildx: | |
if: github.event.pull_request.merged == true || contains(fromJson('["schedule", "workflow_dispatch"]'), github.event_name) || github.event_name == 'pull_request' && startsWith(github.head_ref,'build/') | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
images: ${{ fromJson(vars.IMAGES) }} | |
steps: | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- uses: actions/checkout@v3 | |
- name: Login to registry ${{ env.REGISTRY }} | |
uses: docker/[email protected] | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ secrets.REGISTRY_USER }} | |
password: ${{ secrets.REGISTRY_TOKEN }} | |
- name: Extract Docker metadata | |
id: meta | |
uses: docker/[email protected] | |
with: | |
images: | | |
${{ env.REGISTRY }}/${{ github.repository }}/${{ matrix.images }} | |
tags: | | |
type=ref,event=pr,enable=${{ github.event.pull_request.merged == false }} | |
type=raw,value=${{ github.event.pull_request.base.ref }},enable=${{ github.event.pull_request.merged == true }} | |
type=ref,event=branch,enable=${{ contains(fromJson('["schedule", "workflow_dispatch"]'), github.event_name) }} | |
labels: | | |
maintainer=Digital Victoria | |
repository=${{ github.repositoryUrl }} | |
org.opencontainers.image.authors=Digital Victoria | |
org.opencontainers.image.source=https://github.com/${{ github.repository }}/tree/${{ (contains(fromJson('["opened","synchronize"]'), github.event.action)) && github.head_ref || github.event.action == 'closed' && github.base_ref || github.ref_name }}/images/${{ matrix.images }}/Dockerfile | |
org.opencontainers.image.title=${{ matrix.images }} | |
org.opencontainers.image.description=${{ matrix.images }} image for Bay container platform | |
- name: Create the AWX-EE context | |
if: matrix.images == 'awx-ee' | |
run: | | |
pip install --upgrade ansible-builder | |
ansible-builder create \ | |
--output-filename Dockerfile \ | |
--verbosity 3 | |
working-directory: ./images/awx-ee | |
- name: Upload AWX-EE context for review | |
if: matrix.images == 'awx-ee' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: awx-ee-context | |
path: ./images/awx-ee/context | |
retention-days: 1 | |
- name: Build and push the images | |
uses: docker/[email protected] | |
with: | |
push: true | |
files: | | |
./gh-actions-bake.hcl | |
${{ steps.meta.outputs.bake-file }} | |
# Target the default group - probably unnecessary. | |
targets: ${{ matrix.images }} |