Skip to content

Commit d4940bd

Browse files
committed
ci: Pack plugins into platform folder.
1 parent cc02d87 commit d4940bd

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,21 @@ jobs:
2828
dotnet build -c Release -r ${{ matrix.rid }} -p:InstallYetAnotherHttpHandler=false
2929
- uses: actions/upload-artifact@v4
3030
with:
31-
name: NuGetDependencies-${{ matrix.rid }}
32-
path: Dependencies/NuGetDependencies/${{ matrix.rid }}
31+
name: Plugins-${{ matrix.rid }}
32+
path: Dependencies/NuGetDependencies
3333
install-yetanotherhttphandler:
3434
name: Install YetAnotherHttpHandler
3535
runs-on: ubuntu-latest
3636
steps:
3737
- uses: actions/checkout@v4
3838
- run: dotnet build /t:InstallYetAnotherHttpHandler
39+
- run: |
40+
mkdir tmp
41+
cp -r Dependencies/NuGetDependencies/${{ matrix.rid }} tmp
3942
- uses: actions/upload-artifact@v4
4043
with:
4144
name: YetAnotherHttpHandler
42-
path: Dependencies/YetAnotherHttpHandler
45+
path: tmp
4346

4447
dispatch:
4548
runs-on: ubuntu-latest

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
git commit -m "release: ${{ steps.nextVersion.outputs.nextTag }}."
3030
git push
3131
commitish=$(git rev-parse HEAD)
32-
echo ::set-output name=commitish::${commitish}
32+
echo "commitish=${commitish}" >> $GITHUB_OUTPUT
3333
env:
3434
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3535
- name: Create Release

0 commit comments

Comments
 (0)