Skip to content

update version to 3.6.0 #206

update version to 3.6.0

update version to 3.6.0 #206

Workflow file for this run

name: CI
on:
push:
branches:
- master
- 'release/**'
paths-ignore:
- 'docs/**'
- 'Examples/**'
- '**.md'
pull_request:
branches:
- master
- 'release/**'
paths-ignore:
- 'docs/**'
- 'Examples/**'
- '**.md'
jobs:
ubuntu-build:
name: Ubuntu build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
shell: pwsh
run: ./Build/install-dependencies.ps1
- name: Dotnet info
shell: pwsh
run: dotnet --info
- name: Build
shell: pwsh
run: ./Build/build-ci.ps1 "${{ secrets.GITHUB_TOKEN }}"
- name: Artifact packages
uses: actions/upload-artifact@v4
with:
name: packages
path: |
./build-out/*.nupkg
./build-out/*.zip
if-no-files-found: error
win-build:
name: Windows build
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
shell: pwsh
run: ./Build/install-dependencies.ps1
- name: Dotnet info
shell: pwsh
run: dotnet --info
- name: Build
shell: pwsh
run: ./Build/build-ci.ps1 "${{ secrets.GITHUB_TOKEN }}"