mirror of
https://github.com/creyD/email_valid.git
synced 2026-04-12 11:20:30 +02:00
fix: attempting to fix tagging issue
This commit is contained in:
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -20,7 +20,7 @@ on:
|
|||||||
env:
|
env:
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
IMAGE_NAME: ${{ github.repository }}
|
IMAGE_NAME: ${{ github.repository }}
|
||||||
IMAGE_SUFFIX: ${{ github.ref_name == 'master' && '' || format('-%s', github.ref_name) }}
|
IMAGE_SUFFIX: "${{ github.ref_name != 'master' && format('-{0}', github.ref_name) || '' }}"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ from validate_email import validate_email
|
|||||||
app = FastAPI(
|
app = FastAPI(
|
||||||
title="MailConfirm API",
|
title="MailConfirm API",
|
||||||
description="API for telegram bot for confirming emails.",
|
description="API for telegram bot for confirming emails.",
|
||||||
version="0.1.3",
|
version="0.1.4",
|
||||||
docs_url="/",
|
docs_url="/",
|
||||||
redoc_url=None,
|
redoc_url=None,
|
||||||
debug=False,
|
debug=False,
|
||||||
|
|||||||
Reference in New Issue
Block a user