Skip to content

Update artifact upload workflow #47

Update artifact upload workflow

Update artifact upload workflow #47

Workflow file for this run

name: Build .NET Framework Project
on:
push:
branches:
- main
- github-actions
pull_request:
branches:
- main
jobs:
build-job:
runs-on: windows-latest
# strategy:
# matrix:
# plugin: [ 'NoRecursiveDash', 'HIColorer', 'HI2UC', 'LinesUnbreaker' ]
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
# Setup MSBuild
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1
# Setup NuGet
- name: Setup NuGet
uses: nuget/setup-nuget@v2
#- uses: actions/cache@v4
# id: cache
# with:
# path: ~/.nuget/packages
# key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
# Restore NuGet packages
- name: Restore NuGet packages
# if: steps.cache.outputs.cache-hit != 'true'
run: nuget restore "source\Plugins.Filter.slnf"
# Build the solution
- name: Build solution
run: msbuild "source\Plugins.Filter.slnf" /p:Configuration=Release /p:SkipSharedProject=true
- name: Create archives
shell: pwsh
run: source\zip-plugin-files.ps1
- name: Upload Artifact
strategy:

Check failure on line 52 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Build .NET Framework Project

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 52, Col: 9): Unexpected value 'strategy'
matrix:
plugin: [ 'NoRecursiveDash', 'HIColorer', 'HI2UC', 'LinesUnbreaker' ]
uses: actions/upload-artifact@v4
with:
name: ${{matrix.plugin}}
path: C:\plugins\${{matrix.plugin}}.dll