Add AutoCADBusyService
to update the button state in the example pr…
#13
This file contains hidden or 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
# ------------------------------------------------------------------------------ | |
# Build.yml | |
# ------------------------------------------------------------------------------ | |
name: Build | |
on: | |
push: | |
pull_request: | |
branches-ignore: | |
- master | |
- main | |
workflow_dispatch: | |
jobs: | |
Build: | |
name: Build | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run './build/build.cmd' | |
run: ./build/build.cmd --root ./build | |
env: | |
GitHubToken: ${{ secrets.GITHUB_TOKEN }} | |
SignFile: ${{ secrets.SIGN_FILE }} | |
SignPassword: ${{ secrets.SIGN_PASSWORD }} | |
InstallationFiles: ${{ secrets.INSTALLATION_FILES }} | |
NugetApiUrl: ${{ secrets.NUGET_API_URL }} | |
NugetApiKey: ${{ secrets.NUGET_API_KEY }} |