Skip to content

output trace info during deployment #1

output trace info during deployment

output trace info during deployment #1

Workflow file for this run

name: Deploy Site
on:
push:
branches:
- main
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: windows-latest
defaults:
run:
working-directory: statiq-dopetrope-demo
steps:
- name: Get Source
uses: actions/checkout@v2
with:
submodules: recursive
- name: Install .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x'
- run: dotnet run -- deploy -l "Trace"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}