Skip to content

Commit 1d27442

Browse files
GHA migration part 2: Remove drone spec, drop Drone CI (#26)
* chore: remove drone spec * drop some leftover drone refs
1 parent 9814deb commit 1d27442

File tree

3 files changed

+3
-144
lines changed

3 files changed

+3
-144
lines changed

.drone.yml

Lines changed: 0 additions & 141 deletions
This file was deleted.

Dockerfile.dapper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN if [[ "${ARCH}" == "amd64" ]]; then \
99
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.54.2; \
1010
fi
1111

12-
ENV DAPPER_ENV REPO TAG DRONE_TAG
12+
ENV DAPPER_ENV REPO TAG
1313
ENV DAPPER_SOURCE /go/src/github.com/rancher/kube-api-auth
1414
ENV DAPPER_OUTPUT ./bin ./dist
1515
ENV DAPPER_DOCKER_SOCKET true

scripts/version

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ if [ -n "$(git status --porcelain --untracked-files=no)" ]; then
44
DIRTY="-dirty"
55
fi
66

7-
COMMIT=$(git rev-parse --short HEAD)
8-
GIT_TAG=${DRONE_TAG:-$(git tag -l --contains HEAD | head -n 1)}
7+
COMMIT="$(git rev-parse --short HEAD)"
8+
GIT_TAG="$(git tag -l --contains HEAD | head -n 1)"
99

1010
if [[ -z "$DIRTY" && -n "$GIT_TAG" ]]; then
1111
VERSION=$GIT_TAG

0 commit comments

Comments
 (0)