Skip to content

Commit

Permalink
Refactored for better readability
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickBaus committed Feb 6, 2024
1 parent 73cba5d commit 55a6ee5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 55a6ee5

Please sign in to comment.