1
0
Fork 0
mirror of https://github.com/pnx/pinger.git synced 2026-06-16 03:24:54 +02:00

.github/workflows/release.yml: exclude darwin 386

This commit is contained in:
Henrik Hautakoski 2025-05-30 16:44:19 +02:00
parent aa05c99bea
commit 111ff58fcf

View file

@ -13,6 +13,9 @@ jobs:
matrix: matrix:
os: [ linux, darwin, windows ] os: [ linux, darwin, windows ]
arch: [ amd64, 386 ] arch: [ amd64, 386 ]
exclude:
- os: darwin
arch: 386
name: Release - ${{matrix.os}}-${{matrix.arch}} name: Release - ${{matrix.os}}-${{matrix.arch}}
runs-on: ubuntu-24.04 runs-on: ubuntu-24.04
steps: steps: