diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 710ff62..cd2315b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: with: java-version: 17 - name: Build with Maven - run: mvn clean package -P prd -D maven.test.skip=true -B -V --file taoyao-signal-server/pom.xml + run: mvn clean package -P prd -D maven.test.skip=true -B -V --file ./taoyao-signal-server/pom.xml taoyao-client-web: name: Build taoyao client web strategy: @@ -34,10 +34,12 @@ jobs: with: cache: npm node-version: 16.x - - run: | + working-directory: ./taoyao-client-web + - name: Build with NodeJS + run: | npm install npm run build - working-directory: taoyao-client-web + working-directory: ./taoyao-client-web taoyao-client-media: name: Build taoyao client media strategy: @@ -52,7 +54,9 @@ jobs: with: cache: npm node-version: 16.x - - run: | + working-directory: ./taoyao-client-media + - name: Build with NodeJS + run: | npm install - working-directory: taoyao-client-media + working-directory: ./taoyao-client-media \ No newline at end of file