Push images to registry post merge #105
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: chatbot | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- ./recipes/natural_language_processing/chatbot/** | |
- .github/workflows/chatbot.yaml | |
push: | |
branches: | |
- main | |
paths: | |
- ./recipes/natural_language_processing/chatbot/** | |
- .github/workflows/chatbot.yaml | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository_owner }}/chatbot | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
services: | |
registry: | |
image: registry:2.8.3 | |
ports: | |
- 5000:5000 | |
steps: | |
- uses: actions/[email protected] | |
- name: Build Image | |
id: build_image | |
uses: redhat-actions/[email protected] | |
with: | |
image: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
tags: latest | |
containerfiles: ./recipes/natural_language_processing/chatbot/builds/Containerfile | |
context: recipes/natural_language_processing/chatbot | |
- name: Set up Python | |
uses: actions/[email protected] | |
- name: Install python dependencies | |
working-directory: ./recipes/natural_language_processing/chatbot | |
run: make install | |
- name: Run tests | |
working-directory: ./recipes/natural_language_processing/chatbot | |
run: make test | |
- name: Login to container registry | |
if: > | |
(github.event_name == 'push' || github.event_name == 'schedule') && | |
(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) | |
uses: docker/[email protected] | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push model-service image | |
id: push_model_service | |
if: > | |
(github.event_name == 'push' || github.event_name == 'schedule') && | |
(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) | |
uses: redhat-actions/[email protected] | |
with: | |
image: ${{ steps.build_image.outputs.image }} | |
tags: ${{ steps.build_image.outputs.tags }} | |
registry: ${{ env.REGISTRY }} |