Skip to content

Commit

Permalink
ci: make version comparison backward compatible (#1541)
Browse files Browse the repository at this point in the history
chore: make version comparison backward compatible
  • Loading branch information
cfabianski authored Mar 14, 2024
1 parent a1c95e7 commit 2dd4def
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/version_comparison.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Build base CLI
run: |
cd ./base-cli
go build -o ../bearer-comparison/base-bearer ./cmd/bearer/bearer.go
go build -a -o ../bearer-comparison/base-bearer ./cmd/bearer/bearer.go || go build -a -o ../bearer-comparison/base-bearer ./cmd/bearer/main.go
- name: Checkout test CLI
uses: actions/checkout@v4
with:
Expand All @@ -65,7 +65,7 @@ jobs:
- name: Build test CLI
run: |
cd ./test-cli
go build -o ../bearer-comparison/test-bearer ./cmd/bearer/bearer.go
go build -a -o ../bearer-comparison/test-bearer ./cmd/bearer/bearer.go || go build -a -o ../bearer-comparison/test-bearer ./cmd/bearer/main.go
- name: Cache CLIs and rules
uses: actions/cache/save@v4
with:
Expand Down

0 comments on commit 2dd4def

Please sign in to comment.