Skip to content

Commit

Permalink
Fixed CI mill call on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Jun 30, 2020
1 parent 50e5255 commit ce23680
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ jobs:
if: matrix.os == env.PUBLISH_OS && matrix.java-version == env.PUBLISH_JAVA_VERSION && github.ref == env.PUBLISH_BRANCH && github.event_name == 'push'
run: ./millw -i mill.scalalib.PublishModule/publishAll --sonatypeCreds "${{ secrets.SONATYPE_CREDS }}" --gpgArgs "--passphrase=${{ secrets.GPG_SECRET_KEY_PASS}},--batch,--yes,-a,-b,--pinentry-mode,loopback" --publishArtifacts __.publishArtifacts --readTimeout 600000 --release true --signed true

- run: ./millw -j 0 __.scoverage.xmlReport
- run: ./millw -i -j 0 __.scoverage.xmlReport
if: matrix.os != 'windows-latest'
- run: .\millw.bat -i -j 0 __.scoverage.xmlReport
if: matrix.os == 'windows-latest'
shell: cmd

- name: Upload scoverage reports to codecov.io
uses: codecov/codecov-action@v1
Expand Down

0 comments on commit ce23680

Please sign in to comment.