File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -28,18 +28,21 @@ jobs:
28
28
dotnet build -c Release -r ${{ matrix.rid }} -p:InstallYetAnotherHttpHandler=false
29
29
- uses : actions/upload-artifact@v4
30
30
with :
31
- name : NuGetDependencies -${{ matrix.rid }}
32
- path : Dependencies/NuGetDependencies/${{ matrix.rid }}
31
+ name : Plugins -${{ matrix.rid }}
32
+ path : Dependencies/NuGetDependencies
33
33
install-yetanotherhttphandler :
34
34
name : Install YetAnotherHttpHandler
35
35
runs-on : ubuntu-latest
36
36
steps :
37
37
- uses : actions/checkout@v4
38
38
- run : dotnet build /t:InstallYetAnotherHttpHandler
39
+ - run : |
40
+ mkdir tmp
41
+ cp -r Dependencies/NuGetDependencies/${{ matrix.rid }} tmp
39
42
- uses : actions/upload-artifact@v4
40
43
with :
41
44
name : YetAnotherHttpHandler
42
- path : Dependencies/YetAnotherHttpHandler
45
+ path : tmp
43
46
44
47
dispatch :
45
48
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 29
29
git commit -m "release: ${{ steps.nextVersion.outputs.nextTag }}."
30
30
git push
31
31
commitish=$(git rev-parse HEAD)
32
- echo ::set-output name= commitish:: ${commitish}
32
+ echo " commitish= ${commitish}" >> $GITHUB_OUTPUT
33
33
env :
34
34
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
35
35
- name : Create Release
You can’t perform that action at this time.
0 commit comments