mirror of https://github.com/grafana/loki
Add Drone pipeline to test packaging (#6482)
* Add Drone pipeline to test packaging Currently, the packaging process only happens on tags, which could lead to surprises Especially considering I'm working on deb and RPM packaging (lots more steps than now) I also moved the publishing from Circle to Drone because: 1. I'll need some new secrets from Vault 2. It should be faster * Fix make target * Remove `-parallel` arg for `gox`pull/6516/head
parent
4c90d57e68
commit
6a9557a1e0
@ -1,9 +1,9 @@ |
||||
#!/usr/bin/env bash |
||||
ghr \ |
||||
-t "${GITHUB_TOKEN}" \ |
||||
-u "${CIRCLE_PROJECT_USERNAME}" \ |
||||
-r "${CIRCLE_PROJECT_REPONAME}" \ |
||||
-c "${CIRCLE_SHA1}" \ |
||||
-u "${DRONE_REPO_OWNER}" \ |
||||
-r "${DRONE_REPO_NAME}" \ |
||||
-c "${DRONE_COMMIT}" \ |
||||
-b="$(cat ./tools/release-note.md | envsubst)" \ |
||||
-delete -draft \ |
||||
"${CIRCLE_TAG}" ./dist/ |
||||
"${DRONE_TAG}" ./dist/ |
||||
|
||||
Loading…
Reference in new issue