Skip to content

Commit 8292f7c

Browse files
authored
Fix release tag in CI workflow
1 parent 39e8319 commit 8292f7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/upload-artifact@v2.2.0
2525
with:
2626
# Artifact name
27-
name: NeoDoc-$RELEASE_VERSION
27+
name: NeoDoc-${{ env.RELEASE_VERSION }}
2828
# A file, directory or wildcard pattern that describes what to upload
2929
path: bin/Release/*
3030
retention-days: 90
@@ -40,9 +40,9 @@ jobs:
4040
# Build's context is the set of files located in the specified PATH or URL
4141
context: .
4242
# List of tags
43-
tags: docker.pkg.github.com/ttt-2/neodoc/neodoc:$RELEASE_VERSION
43+
tags: docker.pkg.github.com/ttt-2/neodoc/neodoc:${{ env.RELEASE_VERSION }}
4444
# Always attempt to pull a newer version of the image
4545
pull: true
4646
load: true
4747
- name: Push docker image
48-
run: docker push docker.pkg.github.com/ttt-2/neodoc/neodoc:$RELEASE_VERSION
48+
run: docker push docker.pkg.github.com/ttt-2/neodoc/neodoc:${{ env.RELEASE_VERSION }}

0 commit comments

Comments
 (0)