Skip to content

Commit 7d6508b

Browse files
fix(ci): replace missing deploy variables
1 parent 4c37f5c commit 7d6508b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/release-deploy.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
types: [ closed ]
77

88
env:
9+
DOCKER_REGISTRY: ghcr.io
10+
DOCKER_PACKAGE: site-composite
11+
912
HAB_LICENSE: accept-no-persist
1013

1114
jobs:
@@ -62,9 +65,9 @@ jobs:
6265
dockerfile: Dockerfile
6366
username: ${{ github.actor }}
6467
password: ${{ env.GITHUB_TOKEN }}
65-
registry: ghcr.io
68+
registry: ${{ env.DOCKER_REGISTRY }}
6669
image_name: ${{ env.DOCKER_REPOSITORY }}/${{ env.DOCKER_PACKAGE }}
67-
image_tag: ${{ env.RELEASE_NAME }}
70+
image_tag: ${{ env.RELEASE_TAG }}
6871
build_extra_args: |
6972
--build-arg=SITE_TREE=${{ steps.site-projection.outputs.tree }}
7073
--build-arg=SITE_VERSION=${{ env.RELEASE_TAG }}

0 commit comments

Comments
 (0)