Skip to content

Bump Microsoft.NET.Test.Sdk from 17.9.0 to 17.10.0 #16

Bump Microsoft.NET.Test.Sdk from 17.9.0 to 17.10.0

Bump Microsoft.NET.Test.Sdk from 17.9.0 to 17.10.0 #16

name: Deploy Feature Branch
on:
pull_request:
types: [opened, synchronize]
branches:
- develop
paths:
- 'src/**'
- 'test/**'
- '**.sln'
- '**.cake'
- '.github/workflows/branch-feature.yml'
- '.github/workflows/step-*.yml'
workflow_dispatch:
jobs:
get-version:
if: startsWith(github.head_ref, 'feature/') || github.head_ref == 'master'
uses: ./.github/workflows/step-version.yml
secrets: inherit
with:
is-pre-release: true
build:
needs: [get-version]
uses: ./.github/workflows/step-build.yml
secrets: inherit
with:
version: ${{ needs.get-version.outputs.version }}
checkout-ref: ${{ github.head_ref }}