Skip to content

Commit 03430e9

Browse files
committed
Fix code static analysis issues
1 parent a634a56 commit 03430e9

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/create-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Create release
33
permissions:
44
contents: write
5-
on:
5+
on: # yamllint disable-line rule:truthy
66
workflow_dispatch:
77
inputs:
88
release_tag:

.github/workflows/notebooks-release.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,4 +140,3 @@ jobs:
140140
release_tag: ${{ github.event.inputs.release_tag }}
141141
release_name: ${{ github.event.inputs.release_name }}
142142
branch: ${{ github.event.inputs.branch }}
143-

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ WHERE_WHICH ?= which
3939

4040
# linux/amd64 or darwin/arm64
4141
OS_ARCH=$(shell go env GOOS)/$(shell go env GOARCH)
42-
BUILD_ARCH=linux/amd64
42+
BUILD_ARCH ?= linux/amd64
4343

4444
IMAGE_TAG ?= $(RELEASE)_$(DATE)
4545
KUBECTL_BIN ?= bin/kubectl

0 commit comments

Comments
 (0)