diff options
author | Thibault Gagnaux <tgagnaux@gmail.com> | 2021-11-29 08:59:46 +0100 |
---|---|---|
committer | Thibault Gagnaux <tgagnaux@gmail.com> | 2021-11-29 08:59:46 +0100 |
commit | 2b866e6249cff57bc1dae0a3dc67b14e1e79bcbb (patch) | |
tree | 119549042440f86b8aa78464663ab8bf53db6bfe /.github/workflows/build.yml | |
parent | 2e567c08c7b2c5574f42a5cdddafcc625fbfb516 (diff) | |
download | frege-gradle-plugin-2b866e6249cff57bc1dae0a3dc67b14e1e79bcbb.tar.gz frege-gradle-plugin-2b866e6249cff57bc1dae0a3dc67b14e1e79bcbb.tar.bz2 frege-gradle-plugin-2b866e6249cff57bc1dae0a3dc67b14e1e79bcbb.zip |
debug: adds utf8 encoding to java compile options
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e43b9a1..f58f961 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,9 +35,8 @@ jobs: shell: bash - name: Upload Unit Test Results - if: always() + if: always() && runner.os == 'Windows' uses: actions/upload-artifact@v2 with: name: jvm-dump.txt - path: frege-gradle-plugin/**/javacore*.txt - if: runner.os == 'Windows'
\ No newline at end of file + path: ./**/javacore*.txt
\ No newline at end of file |