fix: Bot private message command processing #108
Workflow file for this run
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
| on: | |
| push: | |
| env: | |
| DOTNET_VERSION: "8.0.x" # The .NET SDK version to use | |
| SOLUTION_DIR: "LocalNetAppChat" | |
| PROJECT: "./LocalNetAppChat.Bot/LocalNetAppChat.Bot.csproj" | |
| RELEASEPREFIX: "LocalNetAppChat" | |
| jobs: | |
| build: | |
| name: build-${{matrix.os}} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| include: | |
| - os: ubuntu-latest | |
| RUNTIMEID: linux-x64 | |
| OUTPUTDIR: lnac-bot-linux-x64 | |
| - os: windows-latest | |
| RUNTIMEID: win-x64 | |
| OUTPUTDIR: lnac-bot-win-x64 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: ${{ env.DOTNET_VERSION }} | |
| - name: Install dependencies | |
| run: dotnet restore | |
| working-directory: Source/${{ env.SOLUTION_DIR }} | |
| # - name: Set version number | |
| # run: ./Set-Version-Number.ps1 "1.${{github.run_number}}" | |
| # working-directory: Scripts | |
| # shell: powershell | |
| - name: Build | |
| run: dotnet build --configuration Release --no-restore | |
| working-directory: Source/${{ env.SOLUTION_DIR }} | |
| # - name: Test + Cover | |
| # run: ./update-coverage.sh | |
| - name: Publish | |
| run: dotnet publish ${{ env.PROJECT }} -c Release -o ${{matrix.OUTPUTDIR}} -p:PublishReadyToRun=true --self-contained true -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:UseAppHost=true -r ${{matrix.RUNTIMEID}} | |
| working-directory: Source/${{ env.SOLUTION_DIR }} | |
| - uses: vimtor/action-zip@v1 | |
| with: | |
| files: ./Source/${{ env.SOLUTION_DIR }}/${{matrix.OUTPUTDIR}}/ | |
| dest: ${{ env.SOLUTION_DIR }}/${{matrix.OUTPUTDIR}}.zip | |
| - name: Release | |
| uses: softprops/action-gh-release@v1 | |
| if: startsWith(github.ref, 'refs/tags/') | |
| with: | |
| files: | | |
| ${{ env.SOLUTION_DIR }}/${{matrix.OUTPUTDIR}}.zip |