Modify pack and publish action to take metrics branch as well (#1747)

This commit is contained in:
Cijo Thomas 2021-01-29 12:35:54 -08:00 committed by GitHub
parent fe24768521
commit 0472991390
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -4,11 +4,11 @@ on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
description: 'Log level'
required: true
default: 'warning'
schedule:
- cron: '0 0 * * *' # once in a day at 00:00
- cron: '0 0 * * *' # once in a day at 00:00
jobs:
build-pack:
@ -17,12 +17,14 @@ jobs:
strategy:
matrix:
os: [windows-latest]
branches: [master,metrics]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # fetching all
ref: ${{ matrix.branches }}
- name: Setup .NET Core 2.1
uses: actions/setup-dotnet@v1
with: