Merge pull request #456 from DomCR/submodule-fix #85
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: Wiki genrator | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
run: git config --global core.autocrlf true | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Update Wiki | |
run: ./update-wiki.sh | |
shell: bash | |
env: | |
ASSEMBLY_PATH: "ACadSharp/bin/Release/net6.0/ACadSharp.dll" | |
GITHUB_TOKEN: ${{ github.token }} |