Skip to content

Commit 951d46f

Browse files
committed
[GITHUB] Archive output in workflow
1 parent f009af4 commit 951d46f

3 files changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/msbuild.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ jobs:
3030
- name: Build
3131
working-directory: ${{env.GITHUB_WORKSPACE}}
3232
run: msbuild ${{env.SOLUTION_FILE_PATH}} /restore /m /p:Configuration=${{matrix.config}} /p:Platform=${{matrix.platform}} /p:RestorePackagesConfig=true
33+
- name: Archive outputs
34+
uses: actions/upload-artifact@main
35+
with:
36+
name: KNSoft.SlimDetours-${{matrix.platform}}-${{matrix.config}}-${{github.sha}}
37+
path: |
38+
.\Source\OutDir\${{matrix.platform}}\${{matrix.config}}
3339
- name: Run demos and tests (x64, x86)
3440
if: ${{ matrix.platform == 'x64' || matrix.platform == 'x86' }}
3541
working-directory: ${{env.GITHUB_WORKSPACE}}

Source/Demo/Instruction.x64.asm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ INCLUDE Instruction.inc
22

33
.CODE
44

5+
ALIGN 16
56
SimpleInstructionFunc1X64 PROC
67

78
xor rax, rax

Source/Demo/Instruction.x86.asm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ INCLUDE Instruction.inc
22

33
.CODE
44

5+
ALIGN 16
56
SimpleInstructionFunc1X86 PROC C
67

78
xor eax, eax

0 commit comments

Comments
 (0)