We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef7f21b commit e50cbecCopy full SHA for e50cbec
.github/workflows/docker-image.yml
@@ -2,7 +2,7 @@ name: Docker Image CI
2
3
on:
4
release:
5
- types: [published]
+ types: [published, prereleased]
6
7
jobs:
8
build:
@@ -31,4 +31,8 @@ jobs:
31
with:
32
platforms: linux/arm64,linux/amd64
33
push: true
34
- tags: rsstranslator/rsstranslator:latest,rsstranslator/rsstranslator:${{ steps.latesttag.outputs.tag }}
+ tags: |
35
+ rsstranslator/rsstranslator:${{ steps.latesttag.outputs.tag }}
36
+ ${{ github.event.release.prerelease && 'rsstranslator/rsstranslator:dev' || 'rsstranslator/rsstranslator:latest' }}
37
+
38
0 commit comments