Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/build_pre_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
client-build:
needs: [draft]
runs-on: ${{ matrix.runs_on }}
continue-on-error: ${{ matrix.continue-on-error || false }}
continue-on-error: ${{ matrix.continue_on_error || false }}
strategy:
fail-fast: false
matrix:
Expand All @@ -101,7 +101,7 @@ jobs:
arch: amd64
- runs_on: ubuntu-24.04-arm
arch: arm32
continue-on-error: true
continue_on_error: true
env:
ARCH: ${{ matrix.arch }}
steps:
Expand All @@ -115,7 +115,6 @@ jobs:

# Compile the client
- name: Run client for ${{matrix.arch}}
continue-on-error: ${{ matrix.continue_on_error || false }}
run: ./release.bash "${{ env.REGISTRY }}:${{ env.TAG }}" client-tgz

# Upload files to draft release
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

client-build:
runs-on: ${{ matrix.runs_on }}
continue-on-error: ${{ matrix.continue-on-error || false }}
continue-on-error: ${{ matrix.continue_on_error || false }}
strategy:
fail-fast: false
matrix:
Expand All @@ -70,7 +70,7 @@ jobs:
arch: amd64
- runs_on: ubuntu-24.04-arm
arch: arm32
continue-on-error: true
continue_on_error: true
env:
ARCH: ${{ matrix.arch }}
steps:
Expand All @@ -90,7 +90,6 @@ jobs:

# Compile the client
- name: Run client for ${{matrix.arch}}
continue-on-error: ${{ matrix.continue-on-error || false }}
run: ./release.bash "${{ env.REGISTRY }}:${{ env.TAG }}" client-tgz

# Push Artifacts to GitHub
Expand Down
Loading