Skip to content

Bump Microsoft.Extensions.Logging from 10.0.5 to 10.0.8 #76

Bump Microsoft.Extensions.Logging from 10.0.5 to 10.0.8

Bump Microsoft.Extensions.Logging from 10.0.5 to 10.0.8 #76

Workflow file for this run

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
types: [opened, reopened, synchronize]
workflow_call:
workflow_dispatch:
name: ci-build
env:
DOTNET_VERSION: 9.0.x
REGISTRY: ghcr.io
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup .NET SDK ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Cache NuGet packages
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget
restore-keys: |
${{ runner.os }}-nuget
- name: Publish ShockOSC
run: dotnet publish ShockOsc/ShockOsc.csproj -c Release -o ./publish/
- name: Upload ShockOSC artifacts
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: ShockOsc
path: publish/*
retention-days: 1
if-no-files-found: error