Skip to content

Bump System.Data.OleDb from 9.0.8 to 10.0.1 #191

Bump System.Data.OleDb from 9.0.8 to 10.0.1

Bump System.Data.OleDb from 9.0.8 to 10.0.1 #191

Workflow file for this run

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:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
get-version:
if: startsWith(github.head_ref, 'feature/') || github.head_ref == 'master'
uses: ./.github/workflows/step-version.yml
build:
needs: [get-version]
uses: ./.github/workflows/step-build.yml
secrets: inherit
with:
version: ${{ needs.get-version.outputs.version }}
checkout-ref: ${{ github.head_ref }}