Skip to content

Commit a016a0c

Browse files
committed
Fix workflows
1 parent 9b1a84b commit a016a0c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
- name: Build
3232
run: |
3333
dotnet build -c Release
34-
dotnet pack -c Release --no-build -o ./bin/dist
35-
# Copy the built DLL to dist folder
34+
# Create dist folder and copy the built DLL for release
35+
mkdir -p ./bin/dist/
3636
cp ./BepisModSettings/bin/Release/BepisModSettings.dll ./bin/dist/
3737
- name: Create Thunderstore Package
3838
run: |
@@ -43,6 +43,5 @@ jobs:
4343
with:
4444
name: BepisModSettings-${{ steps.info.outputs.version }}-${{ steps.info.outputs.sha_short }}
4545
path: |
46-
./bin/dist/*.nupkg
4746
./bin/dist/*.dll
4847
./build/*.zip

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ jobs:
3939
- name: Build
4040
run: |
4141
dotnet build -c Release
42-
# Copy the built DLL to dist folder for release
42+
# Create dist folder and copy the built DLL for release
43+
mkdir -p ./bin/dist/
4344
cp ./BepisModSettings/bin/Release/BepisModSettings.dll ./bin/dist/
4445
- name: Create Thunderstore Package
4546
run: |

0 commit comments

Comments
 (0)