Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Testaccountidfk authored Aug 28, 2024
1 parent 98c85a6 commit 5d1ad2f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:
branches:
- main
workflow_dispatch: # Allows manual triggering from GitHub UI
workflow_dispatch:

jobs:
build:
Expand Down Expand Up @@ -36,14 +36,14 @@ jobs:
run: |
msbuild Lure.sln /p:Configuration=Release
- name: List directory contents before copy
- name: List all files in the Lure directory
run: |
dir Lure\Release
dir Lure /s
- name: Copy DLL
run: |
mkdir output
copy Lure\Release\Lure.dll output\Lure.dll
copy Lure\bin\Release\Lure.dll output\Lure.dll # Adjust the path based on the actual location
- name: List directory contents after copy
run: |
Expand All @@ -53,4 +53,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: Lure-dll
path: output/Lure.dll # Ensure this is relative and correct
path: output/Lure.dll

0 comments on commit 5d1ad2f

Please sign in to comment.