Skip to content

CNX-9308 CNX-9632 Moving to Github Actions for DUI3 #9

CNX-9308 CNX-9632 Moving to Github Actions for DUI3

CNX-9308 CNX-9632 Moving to Github Actions for DUI3 #9

Workflow file for this run

name: .NET Build and Publish
on:
pull_request:
branches: ["dui3/alpha"]
push:
branches: ["main"]
permissions:
contents: write
jobs:
build-and-publish:
runs-on: windows-latest
env:
VERSION: 3.0.0-alpha1
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: tree:0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.x.x
- name: NuGet Cache
uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
- name: Format
run: ./build.ps1 format
- name: Version
run: ./build.ps1 version
- name: Restore
run: ./build.ps1 restore
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Build
run: ./build.ps1 build
- name: Pack
run: ./build.ps1 zip
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: output.zip
path: output/*.*
compression-level: 0 # no compression
- name: Trigger Build Installers
run: ./build.ps1 build-installers ${{ secrets.CONNECTORS_GH_TOKEN }} ${{ github.run_id }}