Skip to content

Add automatic package generation (Github Actions) #1

Add automatic package generation (Github Actions)

Add automatic package generation (Github Actions) #1

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Log in to the Container registry
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Build the Docker image
- name: Build the Docker image
run: docker build . --file Dockerfile --tag aichan-cv:latest
# Push the Docker image to GHCR
- name: Push Docker images to GHCR
run: |
# Push the main app image
docker push ghcr.io/${{ github.repository_owner }}/aichan-cv:latest