Skip to content

Commit

Permalink
Removed src folder build requirement (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
csharpfritz authored Aug 24, 2023
1 parent 43bff2a commit d60b0c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

jobs:
build:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
runs-on: ubuntu-latest
defaults:
run:
Expand All @@ -37,7 +37,7 @@ jobs:
working-directory: ./src/TagzApp.UnitTest

playwright:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
name: 'Playwright Tests'
runs-on: ubuntu-latest
defaults:
Expand All @@ -59,7 +59,7 @@ jobs:
TestHostStartDelay: 1000
run: dotnet test --no-build
image:
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'FritzAndFriends'
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'FritzAndFriends')
name: 'Create docker image for Web'
runs-on: ubuntu-latest
needs: [playwright]
Expand Down

0 comments on commit d60b0c5

Please sign in to comment.