diff --git a/.github/workflows/mbss.yml b/.github/workflows/mbss.yml index 74a20b4..a68cfae 100644 --- a/.github/workflows/mbss.yml +++ b/.github/workflows/mbss.yml @@ -35,15 +35,15 @@ jobs: } - name: Create MBSS directory - run: New-Item -ItemType Directory -Path ./bin -Force + run: New-Item -ItemType Directory -Path ./bin/mbss - name: Extract MBSS - run: Expand-Archive -Path MBSS.zip -DestinationPath ./bin - + run: Expand-Archive -Path MBSS.zip -DestinationPath ./bin/mbss + - name: Start MBSS if: ${{ !contains(github.event.head_commit.message, ':reset') }} - run: ./bin/MBSS.exe + run: ./bin/mbss/MBSS.exe - name: Start MBSS and reset if: ${{ contains(github.event.head_commit.message, ':reset') }} - run: ./bin/MBSS.exe --reset + run: ./bin/mbss/MBSS.exe --reset