diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c51df56..21e71ae 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -47,7 +47,7 @@ jobs: # Runs a single command using the runners shell - name: Run Build run: | - ./gradlew --stacktrace --no-problems-report build + ./gradlew --stacktrace --no-problems-report build shell: bash #Run regression tests - name: Run regression test 2.9.8 @@ -61,7 +61,7 @@ jobs: # Generate distro - name: Create Distro - run: ./gradlew --stacktrace --no-problems-report native-cli:distro + run: ./gradlew --stacktrace --no-problems-report native-cli:distro shell: bash # Upload the artifact file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e29103b..e1e7c3f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: # os: [macos-latest, ubuntu-latest, windows-latest] - os: [ ubuntu-latest, windows-latest ] + os: [ macos-latest, ubuntu-latest ] include: # - os: windows-latest # script_name: windows @@ -21,7 +21,6 @@ jobs: script_name: linux - os: macos-latest script_name: osx - runs-on: ${{ matrix.os }} # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -48,12 +47,12 @@ jobs: # Runs a single command using the runners shell - name: Run Build run: | - ./gradlew build -PnativeVersion=${{env.NATIVE_VERSION}} + ./gradlew --stacktrace --no-problems-report build -PnativeVersion=${{env.NATIVE_VERSION}} shell: bash # Generate distro - name: Create Distro - run: ./gradlew native-cli:distro -PnativeVersion=${{env.NATIVE_VERSION}} + run: ./gradlew --stacktrace --no-problems-report native-cli:distro -PnativeVersion=${{env.NATIVE_VERSION}} shell: bash # Upload the artifact file