Skip to content

Commit d8c2a2a

Browse files
authored
Merge pull request #761 from jmpsec/fix-cicd-cli-error
Fix error in cicd pipeline due to DEB package creation error for cli
2 parents 071c774 + f9f6362 commit d8c2a2a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build_and_test_main_merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ jobs:
6767
create_deb_packages:
6868
strategy:
6969
matrix:
70-
components: ["tls", "admin", "api", "cli"]
70+
components: ["tls", "admin", "api"]
7171
goos: ["linux"]
72-
goarch: ["amd64"]
72+
goarch: ["amd64", "arm64"]
7373
needs: [build_and_test]
7474
runs-on: ubuntu-latest
7575
steps:

.github/workflows/create_tagged_releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
runs-on: ubuntu-latest
7272
strategy:
7373
matrix:
74-
components: ["tls", "admin", "api", "cli"]
74+
components: ["tls", "admin", "api"]
7575
goos: ["linux"]
7676
goarch: ["amd64", "arm64"]
7777
steps:

0 commit comments

Comments
 (0)