Support Console color output in table format in Admin
as red color.
#24
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 }} | |
NuGetApiUrl: ${{ secrets.NUGET_API_URL }} | |
NuGetApiKey: ${{ secrets.NUGET_API_KEY }} |