Skip to content

Commit 22da385

Browse files
authored
Merge branch 'release/v3.1.1' into feature/improve-install-procedure
2 parents 751e556 + e2029d9 commit 22da385

55 files changed

Lines changed: 3059 additions & 2327 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "gomod"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ jobs:
2121
fetch-depth: 0
2222
-
2323
name: Set version
24+
# Set the version file from the current checkout tag (just when a tag is pushed and this workflow is triggered)
2425
run: |
25-
echo -n $(git describe --tags --abbrev=0) > cmd/kuberoCli/VERSION
26+
echo -n $(git describe --tags --abbrev=0) > cmd/kuberoCli/version/CLI_VERSION
2627
-
2728
name: Set up Go
2829
uses: actions/setup-go@v3
@@ -37,4 +38,4 @@ jobs:
3738
args: release --clean
3839
env:
3940
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40-
GORELEASER_GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
41+
GORELEASER_GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}

.goreleaser.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ builds:
1212
- CGO_ENABLED=0
1313
goos:
1414
- linux
15-
- windows
15+
# - windows
1616
- darwin
1717
archives:
1818
- name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
19-
format_overrides:
20-
- goos: windows
21-
format: zip
19+
# format_overrides:
20+
# - goos: windows
21+
# format: zip
2222
checksum:
2323
name_template: 'checksums.txt'
2424
snapshot:

0 commit comments

Comments
 (0)