Skip to content

Commit cb03d21

Browse files
committed
ci: fixes env variable reference
1 parent 92ef763 commit cb03d21

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish_r2u_rstudio.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
uses: docker/build-push-action@v3
3333
with:
3434
# relative path to the place where source code with Dockerfile is located
35-
context: ./{{ env.IMAGE_NAME }}
35+
context: ./${{ env.IMAGE_NAME }}
3636
push: true
3737
tags: |
38-
ghcr.io/allenneuraldynamics/{{ env.IMAGE_NAME }}:${{ env.docker_tag }}
39-
ghcr.io/allenneuraldynamics/{{ env.IMAGE_NAME }}:latest
38+
ghcr.io/allenneuraldynamics/${{ env.IMAGE_NAME }}:${{ env.docker_tag }}
39+
ghcr.io/allenneuraldynamics/${{ env.IMAGE_NAME }}:latest

0 commit comments

Comments
 (0)