diff --git a/.github/workflows/nightly-builds.yml b/.github/workflows/nightly-builds.yml new file mode 100644 index 0000000..ad0b719 --- /dev/null +++ b/.github/workflows/nightly-builds.yml @@ -0,0 +1,28 @@ +name: Nightly Builds + +on: + workflow_dispatch: + +jobs: + build: + runs-on: windows-latest # For a list of available runner types, refer to + # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on + + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + # Install the .NET Core workload + - name: Install .NET Core + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 8 + + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + + - name: Execute unit tests + run: python .\publish.py --version-suffix="-nightly" \ No newline at end of file