Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,13 @@ jobs:
- name: Build
run: |
dotnet build -c Release -r ${{ matrix.rid }} -p:InstallYetAnotherHttpHandler=false
- run: |
mkdir -p tmp/Plugins
cp -r Dependencies/NuGetDependencies/${{ matrix.rid }} tmp/Plugins
- uses: actions/upload-artifact@v4
with:
name: NuGetDependencies-${{ matrix.rid }}
path: Dependencies/NuGetDependencies/${{ matrix.rid }}
name: Plugins-${{ matrix.rid }}
path: tmp
install-yetanotherhttphandler:
name: Install YetAnotherHttpHandler
runs-on: ubuntu-latest
Expand All @@ -39,7 +42,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: YetAnotherHttpHandler
path: Dependencies/YetAnotherHttpHandler
path: Dependencies

dispatch:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
git commit -m "release: ${{ steps.nextVersion.outputs.nextTag }}."
git push
commitish=$(git rev-parse HEAD)
echo ::set-output name=commitish::${commitish}
echo "commitish=${commitish}" >> $GITHUB_OUTPUT
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Release
Expand Down