Skip to content

Commit

Permalink
Update dotnet-core.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalPetryka authored Jul 15, 2024
1 parent a387edd commit 773e8d3
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,24 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.framework }}

- name: Setup dump
uses: lorenalexm/install-dumpbin-action@main

- name: A
run: dumpbin /exports C:/Windows/System32/ntdll.dll
uses: actions/upload-artifact@v3
with:
name: ntr
path: C:/Windows/System32/ntdll.dll

- name: B
run: dumpbin /exports C:/Windows/System32/kernel32.dll
uses: actions/upload-artifact@v3
with:
name: ke
path: C:/Windows/System32/kernel32.dll

- name: C
run: dumpbin /exports C:/Windows/System32/advapi32.dll
uses: actions/upload-artifact@v3
with:
name: ad
path: C:/Windows/System32/advapi32.dll

- name: Build ${{ matrix.target }}
run: dotnet publish "LocalAdmin V2.csproj" -r ${{ matrix.target }} -c release -o "${{ github.workspace }}/builds/${{ matrix.framework }}/${{ matrix.target }}"
Expand Down

0 comments on commit 773e8d3

Please sign in to comment.