Skip to content

Commit

Permalink
Revert "Prevent running desktop e2e tests on wrong tag"
Browse files Browse the repository at this point in the history
This reverts commit 49e87a2.
  • Loading branch information
siepra committed Oct 5, 2023
1 parent 116c925 commit a14fafb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/desktop-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ on:
release:
types:
[released, prereleased]
if: |
startsWith(github.ref, 'refs/tags/@quiet/desktop')

jobs:
run-e2e-tests-linux:
Expand All @@ -18,6 +16,8 @@ jobs:
build-linux:
# needs: run-e2e-tests-linux
runs-on: ubuntu-22.04
if: |
startsWith(github.ref, 'refs/tags/@quiet/desktop')
env:
TEST_MODE: ${{ github.event.action == 'prereleased' }}
Expand Down Expand Up @@ -88,6 +88,8 @@ jobs:
build-macos:
# needs: run-e2e-tests-mac
runs-on: macos-latest
if: |
startsWith(github.ref, 'refs/tags/@quiet/desktop')
env:
TEST_MODE: ${{ github.event.action == 'prereleased' }}
Expand Down Expand Up @@ -159,6 +161,8 @@ jobs:
build-windows:
# needs: run-e2e-tests-win
runs-on: windows-2019
if: |
startsWith(github.ref, 'refs/tags/@quiet/desktop')
env:
TEST_MODE: ${{ github.event.action == 'prereleased' }}
Expand Down

0 comments on commit a14fafb

Please sign in to comment.