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
6 changes: 3 additions & 3 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7575,7 +7575,7 @@ steps:
image: amazon/aws-cli
commands:
- mkdir -pv "$ARTIFACT_PATH"
- rm -rf "${ARTIFACT_PATH}/*"
- rm -rf "$ARTIFACT_PATH/*"
- aws s3 sync --no-progress --delete --exclude "*" --include "*.deb*" s3://$AWS_S3_BUCKET/teleport/tag/${DRONE_TAG##v}/
"$ARTIFACT_PATH"
environment:
Expand Down Expand Up @@ -7772,7 +7772,7 @@ steps:
image: amazon/aws-cli
commands:
- mkdir -pv "$ARTIFACT_PATH"
- rm -rf "${ARTIFACT_PATH}/*"
- rm -rf "$ARTIFACT_PATH/*"
- aws s3 sync --no-progress --delete --exclude "*" --include "*.rpm*" s3://$AWS_S3_BUCKET/teleport/tag/${DRONE_TAG##v}/
"$ARTIFACT_PATH"
environment:
Expand Down Expand Up @@ -8977,6 +8977,6 @@ steps:
WORKSPACE_DIR: /tmp/build-darwin-amd64-connect
---
kind: signature
hmac: 0b2fed5fd5450f6701ef0bfc2ccd90e40590bd73d8ed9ba3c8bbeea6b978c8d7
hmac: 142652320ddc918439481ab91de8a9eaccdde62c0e7700b202f553168c22fc95

...
2 changes: 1 addition & 1 deletion dronegen/os_repos.go
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ func (optpb *OsPackageToolPipelineBuilder) getVersionSteps(codePath, version str
Commands: []string{
"mkdir -pv \"$ARTIFACT_PATH\"",
// Clear out old versions from previous steps
"rm -rf \"${ARTIFACT_PATH}/*\"",
"rm -rf \"$ARTIFACT_PATH/*\"",
strings.Join(
[]string{
"aws s3 sync",
Expand Down