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 6c2ea81 commit 0830021Copy full SHA for 0830021
.github/workflows/dev-pipeline.yml
@@ -3,6 +3,7 @@ on:
3
push:
4
branches:
5
- dev-2.x
6
+ - custom-release
7
jobs:
8
test:
9
runs-on: ubuntu-latest
@@ -50,7 +51,7 @@ jobs:
50
51
CONTAINER_REGISTRY_USER: ${{ secrets.DOCKER_USER }}
52
CONTAINER_REGISTRY_PASSWORD: ${{ secrets.DOCKER_AUTH }}
53
run: |
- otp_version="v2"
54
+ otp_version=${{ github.ref_name }}
55
commit_hash=`git rev-parse --short "$GITHUB_SHA"`
56
date_time=`date +"%Y-%m-%dT%H-%M-%S"`
57
docker_tag_long="$otp_version-$date_time-$commit_hash"
.github/workflows/prod-pipeline.yml
@@ -29,4 +29,4 @@ jobs:
29
DOCKER_USER: ${{ secrets.DOCKER_USER }}
30
DOCKER_AUTH: ${{ secrets.DOCKER_AUTH }}
31
DOCKER_BASE_TAG: v2-prod
32
- DOCKER_DEV_TAG: v2
+ DOCKER_DEV_TAG: ${{ github.event.release.target_commitish }}
0 commit comments