We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77a3ea5 commit 694f031Copy full SHA for 694f031
.github/workflows/deploy.yml
@@ -3,9 +3,10 @@ name: Deploys
3
on:
4
push:
5
tags:
6
+ - 4.*
7
8
jobs:
- build-and-test:
9
+ deploy:
10
# Skip job based on the commit message
11
if: contains(toJson(github.event.commits), '[skip ci]') == false
12
name: Deploy Docker images
@@ -26,7 +27,7 @@ jobs:
26
27
DOCKER_USERNAME: ${{secrets.DOCKER_USERNAME}}
28
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
29
- name: Deploy new images
- run: VERSION="${TRAVIS_TAG}" make release
30
+ run: VERSION="${TAG}" make release
31
# - name: Deploy tag latest
32
# run: VERSION="${TRAVIS_TAG}" make tag_latest
33
# - name: Deploy release latest
0 commit comments