Skip to content
This repository has been archived by the owner on Jan 17, 2025. It is now read-only.

chore: Fix typos and update LICENSE #69

chore: Fix typos and update LICENSE

chore: Fix typos and update LICENSE #69

Workflow file for this run

name: Build Docker Image
on:
push:
branches:
- master
env:
REGISTRY: ghcr.io
IMAGE: bclswl0827/chatgemini
jobs:
build_docker_image:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Login to Registry
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push
uses: docker/build-push-action@v2
with:
push: true
file: ./Dockerfile
tags: ${{ env.REGISTRY }}/${{ env.IMAGE }}:latest
- name: Inspect Image
run: |
docker buildx imagetools inspect \
${{ env.REGISTRY }}/${{ env.IMAGE }}:latest