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
4 changes: 2 additions & 2 deletions .github/workflows/generate-windows-packages-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ jobs:
7z a -tzip turing-system-monitor-${{github.event.release.tag_name}}-portable-debug.zip ".\dist\turing-system-monitor"

- name: '📦 Archive Windows installer'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: turing-system-monitor-${{github.event.release.tag_name}}-debug
path: tools\windows-installer\Output\turing-system-monitor-${{github.event.release.tag_name}}-debug.exe
if-no-files-found: error

- name: '📦 Archive Windows portable archive'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: turing-system-monitor-${{github.event.release.tag_name}}-portable-debug
path: turing-system-monitor-${{github.event.release.tag_name}}-portable-debug.zip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/generate-windows-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ jobs:
7z a -tzip turing-system-monitor-${{github.event.release.tag_name}}-portable.zip ".\dist\turing-system-monitor"

- name: '📦 Archive Windows installer'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: turing-system-monitor-${{github.event.release.tag_name}}
path: tools\windows-installer\Output\turing-system-monitor-${{github.event.release.tag_name}}.exe
if-no-files-found: error

- name: '📦 Archive Windows portable archive'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: turing-system-monitor-${{github.event.release.tag_name}}-portable
path: turing-system-monitor-${{github.event.release.tag_name}}-portable.zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/simple-program-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
cp screencap.png screenshot-py${{ matrix.python-version }}.png

- name: Archive a screenshot
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: screenshot-py${{ matrix.python-version }}
path: screenshot-*.png
2 changes: 1 addition & 1 deletion .github/workflows/simple-program-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
cp screencap.png screenshot-py${{ matrix.python-version }}.png

- name: Archive a screenshot
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: screenshot-py${{ matrix.python-version }}
path: screenshot-*.png
2 changes: 1 addition & 1 deletion .github/workflows/simple-program-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
cp screencap.png screenshot-py${{ matrix.python-version }}.png

- name: Archive a screenshot
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: screenshot-py${{ matrix.python-version }}
path: screenshot-*.png
2 changes: 1 addition & 1 deletion .github/workflows/system-monitor-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
cp screencap.png screenshot-py${{ matrix.python-version }}-${{ matrix.theme }}.png

- name: Archive a screenshot
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: screenshot-py${{ matrix.python-version }}-${{ matrix.theme }}
path: screenshot-*.png
2 changes: 1 addition & 1 deletion .github/workflows/system-monitor-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
cp screencap.png screenshot-py${{ matrix.python-version }}-${{ matrix.theme }}.png

- name: Archive a screenshot
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: screenshot-py${{ matrix.python-version }}-${{ matrix.theme }}
path: screenshot-*.png
2 changes: 1 addition & 1 deletion .github/workflows/system-monitor-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
cp screencap.png screenshot-py${{ matrix.python-version }}-${{ matrix.theme }}.png

- name: Archive a screenshot
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: screenshot-py${{ matrix.python-version }}-${{ matrix.theme }}
path: screenshot-*.png
2 changes: 1 addition & 1 deletion .github/workflows/themes-screenshot-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
done

- name: Archive screenshots
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: themes-screenshots
path: |
Expand Down
Loading