diff --git a/.github/workflows/build-macos-m1.yml b/.github/workflows/build-macos-m1.yml index e343633f67..8ead6305ad 100644 --- a/.github/workflows/build-macos-m1.yml +++ b/.github/workflows/build-macos-m1.yml @@ -14,12 +14,9 @@ jobs: Main: needs: pre_job - # We always process server or desktop release tags, because they also publish the release - if: github.repository == 'laurent22/joplin' && needs.pre_job.outputs.should_skip != 'true' - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [macos-latest] + # We always process desktop release tags, because they also publish the release + if: github.repository == 'laurent22/joplin' && (needs.pre_job.outputs.should_skip != 'true' || startsWith(github.ref, 'refs/tags/v')) + runs-on: macos-latest steps: - uses: actions/checkout@v2