Bump actions/upload-artifact from 4 to 6 #54
Workflow file for this run
This file contains hidden or 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: Continuous Integration | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'docs/**' | |
| - 'NppCSharpPluginPack/*.zip' | |
| - '*.md' | |
| - '*.txt' | |
| - '*.PNG' | |
| - 'makerelease.bat' | |
| - 'testfiles/**' | |
| - 'translation/**' | |
| jobs: | |
| build: | |
| runs-on: windows-2022 | |
| strategy: | |
| max-parallel: 4 | |
| matrix: | |
| build_configuration: [Release, Debug] | |
| build_platform: [x64, x86] | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v5 | |
| - name: Add msbuild to PATH | |
| uses: microsoft/[email protected] | |
| - name: MSBuild of solution | |
| run: > | |
| msbuild /t:Restore NppCSharpPluginPack/NppCSharpPluginPack.sln; | |
| msbuild NppCSharpPluginPack/NppCSharpPluginPack.sln /p:configuration="${{ matrix.build_configuration }}" /p:platform="${{ matrix.build_platform }}" /m /verbosity:minimal | |
| - name: Archive artifacts for x64 | |
| if: matrix.build_platform == 'x64' && matrix.build_configuration == 'Release' | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: plugin_dll_x64 | |
| path: NppCSharpPluginPack\bin\${{ matrix.build_configuration }}-x64\CSharpPluginPack.dll | |
| - name: Archive artifacts for x86 | |
| if: matrix.build_platform == 'x86' && matrix.build_configuration == 'Release' | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: plugin_dll_x86 | |
| path: NppCSharpPluginPack\bin\${{ matrix.build_configuration }}\CSharpPluginPack.dll | |