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/irc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
message: |-
Showing last ${{ steps.gitlog.outputs.llc }} commit(s) to ${{ github.repository }}:
${{ steps.gitlog.outputs.log }}
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: recent_commit
path: recent_commit
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
cd src
bash tools/appimage-build-script.sh
- name: Package upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: ${{ github.workspace }}/src/build/Darktable-*.AppImage*
name: artifact-appimage-${{ runner.arch }}
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:
echo "VERSION=$(git describe --tags --match release-* | sed 's/^release-//;s/-/+/;s/-/~/;s/rc/~rc/')" >> $GITHUB_ENV
([[ ${MSYSTEM_CARCH} == x86_64 ]] && echo "SYSTEM=win64" || echo "SYSTEM=woa64") >> $GITHUB_ENV
- name: Package upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: ${{ env.BUILD_DIR }}/*.exe
name: artifact-windows-${{ runner.arch }}
Expand Down Expand Up @@ -381,7 +381,7 @@ jobs:
echo "VERSION=$(git describe --tags --match release-* | sed 's/^release-//;s/-/+/;s/-/~/;s/rc/~rc/')" >> $GITHUB_ENV
echo "ARCHITECTURE=$(uname -m)" >> $GITHUB_ENV
- name: Package upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: ${{ env.INSTALL_PREFIX }}/darktable-${{ env.VERSION }}-${{ env.ARCHITECTURE }}.dmg
name: artifact-macos-${{ runner.arch }}
Expand Down
Loading