Skip to content

- Update Bing Search tool to return the relevant expression to the LL… #46

- Update Bing Search tool to return the relevant expression to the LL…

- Update Bing Search tool to return the relevant expression to the LL… #46

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches:
- master
- main
workflow_dispatch:
inputs:
image_tag:
description: 'Docker image tag'
required: true
default: 'sugilite'
type: string
jobs:
docker:
runs-on: ubuntu-latest
environment: Docker
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ github.event_name == 'workflow_dispatch' && format('zavocc/jakey:{0}', inputs.image_tag) || 'zavocc/jakey:autobot' }}