We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4a1b275 + 755e99d commit 0f8d514Copy full SHA for 0f8d514
.github/workflows/docker-build.yml
@@ -3,6 +3,9 @@ name: Docker Build and Push
3
on:
4
release:
5
types: [published]
6
+ push:
7
+ branches:
8
+ - v2
9
10
jobs:
11
build-and-push:
@@ -34,6 +37,8 @@ jobs:
34
37
tags: |
35
38
type=ref,event=tag
36
39
type=raw,value=latest,enable=${{ !github.event.release.prerelease }}
40
+ type=raw,value=alpha,enable=${{ github.ref == 'refs/heads/v2' }}
41
+ type=raw,value=alpha-{{date 'YYYYMMDD'}}-{{shortSha}},enable=${{ github.ref == 'refs/heads/v2' }}
42
labels: |
43
org.opencontainers.image.source=${{ github.repositoryUrl }}
44
org.opencontainers.image.description=TTS API server compatible with OpenAI's TTS API format
0 commit comments