Call .value
to get the actual typeName in Main (#1385)
#440
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publishDocs: | |
runs-on: ubuntu-latest | |
env: | |
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '8' | |
- name: publish docs | |
shell: 'script -q -e -c "bash {0}"' | |
run: echo "Hello World" && ./mill -i publishDocs | |
env: | |
TERM: xterm-256color |