1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00

Tools: Fixing logic

This commit is contained in:
Laurent Cozic 2022-12-15 23:31:39 +00:00
parent 652a72aba7
commit 69038e2d84

View File

@ -15,7 +15,7 @@ jobs:
needs: pre_job needs: pre_job
# We always process server tags, because that's when the Docker image is # We always process server tags, because that's when the Docker image is
# built # built
if: needs.pre_job.outputs.should_skip != 'true' && !startsWith(github.ref, 'refs/tags/server-v') if: needs.pre_job.outputs.should_skip != 'true' || startsWith(github.ref, 'refs/tags/server-v')
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix: