chore(deps): update dependency spectre.console.cli.extensions.depende… #462
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
pull_request: | |
release: | |
types: | |
- published | |
workflow_dispatch: | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
MINVERBUILDMETADATA: build.${{github.run_number}} | |
jobs: | |
build: | |
name: Build-${{matrix.os}} | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
with: | |
lfs: true | |
fetch-depth: 0 | |
- name: "Install .NET Core SDK" | |
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0 | |
- name: "Dotnet Tool Restore" | |
run: dotnet tool restore | |
shell: pwsh | |
- name: "Dotnet Cake Build" | |
run: dotnet cake --target=Build | |
shell: pwsh | |
- name: "Dotnet Cake Test" | |
run: dotnet cake --target=Test | |
shell: pwsh | |
- name: "Dotnet Cake Pack" | |
run: dotnet cake --target=Pack | |
shell: pwsh | |
- name: "Publish Artefacts" | |
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3.2.1 | |
with: | |
name: ${{matrix.os}} | |
path: "./Artefacts" |