Skip to content

Merge pull request #77 from LinqToDB4iSeries/V5.4.0 #31

Merge pull request #77 from LinqToDB4iSeries/V5.4.0

Merge pull request #77 from LinqToDB4iSeries/V5.4.0 #31

Workflow file for this run

on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+.[0-9]+"
jobs:
build:
runs-on: windows-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Verify commit exists in origin/master
run: |
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
git branch --remote --contains | grep origin/master
- name: Build
run: dotnet build -c Release .\Source\ISeriesProvider\LinqToDB.DataProvider.DB2iSeries.csproj /p:ContinuousIntegrationBuild=true
- name: Pack
run: dotnet pack -c Release --include-symbols --include-source .\Source\ISeriesProvider\LinqToDB.DataProvider.DB2iSeries.csproj --no-build --output .
- name: Push
run: dotnet nuget push *.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}