Skip to content

Commit 7d84115

Browse files
committed
github: expect docker tag to include -beta suffix
1 parent 1177287 commit 7d84115

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/docker.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232
- name: Set env for RELEASE_VERSION
3333
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/docker}" >> $GITHUB_ENV
3434

35-
# We will push tags with the format docker/v0.x.y-lnd-v0.aa.bb-beta where
36-
# x and y are lndinit's version and aa and bb are lnd's version. This
37-
# variable LND_VERSION extracts everything after v0.x.y-lnd- so we know
38-
# which base image we need to build on top of.
35+
# We will push tags with the format docker/v0.x.y-beta-lnd-v0.aa.bb-beta
36+
# where x and y are lndinit's version and aa and bb are lnd's version.
37+
# This variable LND_VERSION extracts everything after v0.x.y-lnd- so we
38+
# know which base image we need to build on top of.
3939
- name: Set env for LND_VERSION
40-
run: echo "LND_VERSION=${RELEASE_VERSION##v*\.*\.*-lnd-}" >> $GITHUB_ENV
40+
run: echo "LND_VERSION=${RELEASE_VERSION##v*\.*\.*-beta-lnd-}" >> $GITHUB_ENV
4141

4242
- name: Build and push
4343
id: docker_build

0 commit comments

Comments
 (0)