Skip to content

Bump actions/upload-artifact from 3 to 4 #33

Bump actions/upload-artifact from 3 to 4

Bump actions/upload-artifact from 3 to 4 #33

Workflow file for this run

name: Build SFX bundle
on: [push, pull_request]
env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: CPP/7zip/Bundles/SFXSetup/SFXSetup.sln
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
config:
# Note: `ReleaseD` builds 7zSD.sfx (which used to be linked to
# `msvcrt.dll` with older Visual C versions, but with recent ones
# links to `vcruntime140.dll`), as opposed to 7zS.sfx, which is
# linked statically.
- name: ReleaseD
artifact: 7zSD
- name: Release
artifact: 7zS
steps:
- uses: actions/checkout@v3
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v1.1.3
- name: Build
working-directory: ${{ github.workspace }}
run: msbuild /m /p:Configuration=${{ matrix.config.name }} ${{ env.SOLUTION_FILE_PATH }}
- name: Upload SFX bundle
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.config.artifact }}
path: CPP/7zip/Bundles/SFXSetup/${{ matrix.config.name }}/${{ matrix.config.artifact }}.sfx