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.
1 parent 4adc1d1 commit 8e372c4Copy full SHA for 8e372c4
.github/workflows/docker_publish.yml
@@ -16,7 +16,7 @@ jobs:
16
steps:
17
- name: Check out the repo
18
uses: actions/checkout@v2
19
- - name: Push to Docker Hub
+ - name: Push stable version to Docker Hub
20
if: "!github.event.release.prerelease"
21
uses: docker/build-push-action@v1
22
with:
@@ -25,3 +25,13 @@ jobs:
25
repository: ubercadence/web
26
tag_with_ref: true
27
tags: latest
28
+
29
+ - name: Push beta version to Docker Hub
30
+ if: github.event.release.prerelease
31
+ uses: docker/build-push-action@v1
32
+ with:
33
+ username: ${{ secrets.CADENCE_WEB_DOCKERHUB_USERNAME }}
34
+ password: ${{ secrets.CADENCE_WEB_DOCKERHUB_TOKEN }}
35
+ repository: ubercadence/web
36
+ tag_with_ref: true
37
+ tags: beta
0 commit comments