Skip to content

Skip when TTS is "#N/A" #115

Skip when TTS is "#N/A"

Skip when TTS is "#N/A" #115

Workflow file for this run

name: Build & Publish Docker Images
on:
push:
branches:
- production
jobs:
#
# # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # #
tts-generator:
name: 'Docker Build - server'
runs-on: ubuntu-latest
strategy:
fail-fast: false
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docker Image
uses: docker/build-push-action@v4
with:
push: true
context: ./
file: ./Dockerfile
tags: ghcr.io/carrismetropolitana/tts-generator:${{ github.ref_name }}