Skip to content

Commit

Permalink
ci(misc): allow running workflow via dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
rudoi committed May 9, 2024
1 parent 7fba9fb commit a829b52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:

jobs:
frontend-checks:
if: ${{ contains(github.event.pull_request.labels.*.name, 'ci ready') || (github.event_name == 'release' || github.event_name == 'push') }}
if: ${{ contains(github.event.pull_request.labels.*.name, 'ci ready') || (github.eventt_name == 'release' || github.event_name == 'workflow_dispatch') || github.event_name == 'push' }}
strategy:
matrix:
app: [ "core/ui", "friendshipper", "birdie" ]
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
yarn lint
build-linux:
if: ${{ contains(github.event.pull_request.labels.*.name, 'ci ready') || (github.event_name == 'release' || github.event_name == 'push') }}
if: ${{ contains(github.event.pull_request.labels.*.name, 'ci ready') || (github.eventt_name == 'release' || github.event_name == 'workflow_dispatch') || github.event_name == 'push' }}
runs-on:
group: ethos-linux
strategy:
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
run: aws s3 sync ${REF##*-} s3://${{ secrets.S3_BUCKET_NAME }}/tauri-${{ matrix.app }}/${REF##*-}

build-windows:
if: ${{ contains(github.event.pull_request.labels.*.name, 'ci ready') || (github.event_name == 'release' || github.event_name == 'push') }}
if: ${{ contains(github.event.pull_request.labels.*.name, 'ci ready') || (github.eventt_name == 'release' || github.event_name == 'workflow_dispatch') || github.event_name == 'push' }}
runs-on:
group: ethos-windows
strategy:
Expand Down

0 comments on commit a829b52

Please sign in to comment.