From 9fac50f05b7573cc8367e03014e204df39e05c9a Mon Sep 17 00:00:00 2001 From: Zespre Chang Date: Thu, 25 Apr 2024 22:35:26 +0800 Subject: [PATCH] ci: remove dist directory Also, bump setup-go action to v5. Signed-off-by: Zespre Chang --- .github/workflows/codeql.yml | 2 +- .gitignore | 1 - Dockerfile.dapper | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 65a8379..864a028 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -50,7 +50,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: go-version: '1.21' diff --git a/.gitignore b/.gitignore index 18f5283..5aef6da 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,6 @@ /.dapper /.cache /bin -/dist *.swp .idea *.DS_Store diff --git a/Dockerfile.dapper b/Dockerfile.dapper index 02623c2..c3a01d0 100644 --- a/Dockerfile.dapper +++ b/Dockerfile.dapper @@ -17,7 +17,7 @@ RUN go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.14.0 ENV DAPPER_ENV REPO PUSH TAG DRONE_TAG ARCH ENV DAPPER_SOURCE /go/src/github.com/harvester/vm-dhcp-controller -ENV DAPPER_OUTPUT ./bin ./dist ./chart/crds +ENV DAPPER_OUTPUT ./bin ./chart/crds ENV DAPPER_DOCKER_SOCKET true WORKDIR ${DAPPER_SOURCE}