diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ea7345a..12578d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,8 +91,8 @@ jobs: - linux/arm64 exclude: # Only build packages for ARMv6 and ARMv7 for tagged releases or pull requests - - platform: ${{ startsWith(github.ref, 'refs/tags/') && 'nothing' || ${{ github.event_name == 'pull_request' }} && 'nothing' || 'linux/arm/v6' }} - - platform: ${{ startsWith(github.ref, 'refs/tags/') && 'nothing' || ${{ github.event_name == 'pull_request' }} && 'nothing' || 'linux/arm/v7' }} + - platform: ${{ (startsWith(github.ref, 'refs/tags/') && 'nothing') || (github.event_name == 'pull_request' }} && 'nothing') || 'linux/arm/v6' }} + - platform: ${{ (startsWith(github.ref, 'refs/tags/') && 'nothing') || (github.event_name == 'pull_request' }} && 'nothing') || 'linux/arm/v7' }} steps: - name: Checkout repository uses: actions/checkout@v4