Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .buildkite/pipeline.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ steps:
- label: ":rocket: GitHub Release"
key: release
depends_on: build
command: .buildkite/release.sh "${BUILDKITE_TAG}"
command: |
buildkite-agent artifact download builddeck . --step build
buildkite-agent artifact download builddeck.sha256 . --step build
.buildkite/release.sh "${BUILDKITE_TAG}"
secrets:
- GITHUB_TOKEN
2 changes: 2 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ steps:
command: |
if buildkite-agent artifact download builddeck.tag . --step release_build 2>/dev/null && [[ -s builddeck.tag ]]; then
VERSION=$(cat builddeck.tag)
buildkite-agent artifact download builddeck . --step release_build
buildkite-agent artifact download builddeck.sha256 . --step release_build
echo "Creating GitHub release for ${VERSION}"
.buildkite/release.sh "${VERSION}"
else
Expand Down
Loading