Skip to content

Commit 311ffcd

Browse files
committed
fix: update pipeline to use builddeck.tag instead of tag.txt
1 parent ba7a89e commit 311ffcd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.buildkite/pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ steps:
7979
echo "--- Checking all packages compile"
8080
.buildkite/setup-go.sh go build ./...
8181
echo "--- Building builddeck binary"
82-
# Get version from tag.txt artifact created by tag step (if tag was created)
83-
if buildkite-agent artifact download tag.txt . --step tag 2>/dev/null; then
84-
VERSION=$(cat tag.txt)
82+
# Get version from builddeck.tag artifact created by tag step (if tag was created)
83+
if buildkite-agent artifact download builddeck.tag . --step tag 2>/dev/null; then
84+
VERSION=$(cat builddeck.tag)
8585
echo "Using version from tag step: ${VERSION}"
8686
else
8787
VERSION="dev"

0 commit comments

Comments
 (0)