Skip to content

Commit 8a18d1d

Browse files
committed
fix(ci): artifact path
1 parent c1b64ff commit 8a18d1d

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
test:
1010
name: Build
1111
strategy:
12+
fail-fast: false
1213
matrix:
1314
arch: [amd64, arm64]
1415
os: [ubuntu-latest, ubuntu-18.04, windows-latest, macos-11]
@@ -39,6 +40,6 @@ jobs:
3940
uses: svenstaro/upload-release-action@v2
4041
with:
4142
repo_token: ${{ secrets.GITHUB_TOKEN }}
42-
file: target/release/gitops${{ matrix.artifact_suffix }}
43+
file: cmd/gitpos/gitops${{ matrix.artifact_suffix }}
4344
asset_name: gitops_${{ matrix.os_name }}_${{ matrix.arch }}${{ matrix.artifact_suffix }}
4445
tag: ${{ github.ref }}

.github/workflows/docker.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
id: docker_build
2222
uses: docker/build-push-action@v4
2323
with:
24+
platforms: linux/amd64,linux/arm64
2425
push: false
2526
- name: Image digest
2627
run: echo ${{ steps.docker_build.outputs.digest }}

.github/workflows/golang-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
test:
1111
name: Golang tests
1212
strategy:
13+
fail-fast: false
1314
matrix:
1415
os: [ubuntu-latest, windows-latest, macos-latest]
1516
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)