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
2 changes: 1 addition & 1 deletion .github/workflows/build-debian-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
fakeroot dpkg-deb --build ubuntu22.04_amd64 .

- name: Save package
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ubuntu22.04_amd64
path: ./packages/beutl_${{ inputs.simpleVer }}-${{ inputs.revision }}ubuntu22.04_amd64.deb
2 changes: 1 addition & 1 deletion .github/workflows/build-executable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
--version ${{ inputs.nugetVer }}

- name: Save
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: beutl-${{ matrix.rid }}${{ matrix.standalone == true && '-standalone' || '' }}-${{ inputs.semVer }}
path: ./artifacts/*.zip
2 changes: 1 addition & 1 deletion .github/workflows/build-macos-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
ditto -c -k --sequesterRsrc --keepParent "output/AppBundle/Beutl.app" "artifacts/Beutl.${{ matrix.rid }}.app.zip"

- name: Save
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Beutl_${{ matrix.rid }}
path: artifacts/Beutl.${{ matrix.rid }}.app.zip
2 changes: 1 addition & 1 deletion .github/workflows/build-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
--informational-version ${{ inputs.infoVer }}

- name: Save
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Packages
path: ./artifacts/*.nupkg
2 changes: 1 addition & 1 deletion .github/workflows/build-windows-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
--assembly-version ${{ inputs.asmVer }}

- name: Save installer
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: beutl${{ matrix.standalone == true && '-standalone' || '' }}-setup
path: ./artifacts/beutl${{ matrix.standalone == true && '-standalone' || '' }}-setup.exe
2 changes: 1 addition & 1 deletion .github/workflows/daily-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
--version ${{ needs.determine-version.outputs.nugetVer }}

- name: Save
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: beutl_${{ matrix.rid }}
path: ./artifacts/
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
run: reportgenerator -reports:`find tests/Beutl.UnitTests/TestResults/*/coverage.cobertura.xml | head -n 1 ` -targetdir:coveragereport -reporttypes:Html

- name: Save
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Coverage
path: coveragereport
Loading