diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 207cfdfe..3dbe8f7a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -39,7 +42,7 @@ jobs: - uses: actions/upload-artifact@v4 with: name: YetAnotherHttpHandler - path: Dependencies/YetAnotherHttpHandler + path: Dependencies dispatch: runs-on: ubuntu-latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fe2784a7..52c2ee5b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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