Skip to content

Commit 390a5c1

Browse files
authored
fix(ci): release workflow failure (#442)
1 parent 1052be2 commit 390a5c1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
outputs:
3737
image_digest: ${{ steps.build.outputs.digest }}
3838
steps:
39+
- uses: actions/checkout@v3
3940
- id: meta
4041
uses: docker/metadata-action@v4
4142
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ WORKDIR /usr/src/edge-runtime
1515
COPY . .
1616

1717
RUN --mount=type=cache,target=/usr/local/cargo/registry,id=${TARGETPLATFORM} --mount=type=cache,target=/usr/src/edge-runtime/target,id=${TARGETPLATFORM} \
18-
${GIT_V_TAG} cargo build --profile ${PROFILE} --features "${FEATURES}" && \
18+
GIT_V_TAG=${GIT_V_TAG} cargo build --profile ${PROFILE} --features "${FEATURES}" && \
1919
mv /usr/src/edge-runtime/target/${PROFILE}/edge-runtime /root
2020

2121
RUN objcopy --compress-debug-sections \

0 commit comments

Comments
 (0)