Skip to content
This repository has been archived by the owner on Aug 10, 2023. It is now read-only.

add - doc - Added individual VT sequence regexes and generator... #12

add - doc - Added individual VT sequence regexes and generator...

add - doc - Added individual VT sequence regexes and generator... #12

Workflow file for this run

name: Build Project (Linux)
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Solution Compilation
run: dotnet build --configuration Debug "VT.NET.sln"
- uses: actions/upload-artifact@v3
if: success()
with:
name: vtnet-build
path: "VT.NET/bin/Debug/"
notify:
runs-on: ubuntu-latest
needs:
- build
if: ${{ always() }}
steps:
- name: Notify
uses: nobrayner/discord-webhook@v1
with:
github-token: ${{ secrets.G_TOKEN }}
discord-webhook: ${{ secrets.DISCORD_WEBHOOK }}