From 488d252dc2dab006e99b78f4afaf22baa68c670a Mon Sep 17 00:00:00 2001 From: ks6088ts Date: Thu, 1 Aug 2024 12:35:45 +0900 Subject: [PATCH] template-python -> workshop-azure-openai --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- .github/workflows/docker-release.yaml | 4 ++-- Makefile | 2 +- README.md | 2 +- pyproject.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index e03c8a2..cc9ecf1 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -43,7 +43,7 @@ What kind of change does this Pull Request introduce? ``` git clone git@github.com:ks6088ts-labs/workshop-azure-openai.git -cd template-python +cd workshop-azure-openai ``` - Test the code diff --git a/.github/workflows/docker-release.yaml b/.github/workflows/docker-release.yaml index 4af3797..8e3c895 100644 --- a/.github/workflows/docker-release.yaml +++ b/.github/workflows/docker-release.yaml @@ -37,5 +37,5 @@ jobs: GIT_REVISION=${{ github.sha }} GIT_TAG=${{steps.set_version.outputs.no-dash}} tags: | - ${{ secrets.DOCKERHUB_USERNAME }}/template-python:${{steps.set_version.outputs.no-dash}} - ${{ secrets.DOCKERHUB_USERNAME }}/template-python:latest + ${{ secrets.DOCKERHUB_USERNAME }}/workshop-azure-openai:${{steps.set_version.outputs.no-dash}} + ${{ secrets.DOCKERHUB_USERNAME }}/workshop-azure-openai:latest diff --git a/Makefile b/Makefile index 57bf73f..046233e 100644 --- a/Makefile +++ b/Makefile @@ -49,7 +49,7 @@ ci-test: install-deps-dev format-check lint test ## run CI tests # Docker # --- DOCKER_REPO_NAME ?= ks6088ts -DOCKER_IMAGE_NAME ?= template-python +DOCKER_IMAGE_NAME ?= workshop-azure-openai DOCKER_COMMAND ?= python main.py # Tools diff --git a/README.md b/README.md index 9ef4423..d177ab7 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![docker](https://github.com/ks6088ts-labs/workshop-azure-openai/actions/workflows/docker.yaml/badge.svg?branch=main)](https://github.com/ks6088ts-labs/workshop-azure-openai/actions/workflows/docker.yaml?query=branch%3Amain) [![docker-release](https://github.com/ks6088ts-labs/workshop-azure-openai/actions/workflows/docker-release.yaml/badge.svg)](https://github.com/ks6088ts-labs/workshop-azure-openai/actions/workflows/docker-release.yaml) -# template-python +# workshop-azure-openai This is a template repository for Python diff --git a/pyproject.toml b/pyproject.toml index eee64b1..16572b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.poetry] -name = "template-python" +name = "workshop-azure-openai" version = "0.1.0" description = "A GitHub template repository for a Python" authors = ["ks6088ts "]