Skip to content

Commit

Permalink
Update BuildAndRelease.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ExplosBlue committed Sep 14, 2024
1 parent 50303cf commit 1bb8775
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/BuildAndRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
xcopy ${{ env.SOURCE_DIR }}\LICENSE .
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: CoinKiller-Windows
path: ${{ runner.temp }}\deploy\
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
macdeployqt CoinKiller.app -dmg
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: CoinKiller-Macos
path: ${{ runner.temp }}/build/CoinKiller.dmg
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
./linuxdeploy-x86_64.AppImage --appdir ${{ runner.temp }}/build/AppDir --plugin qt --output appimage
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: CoinKiller-Linux
path: ${{ runner.temp }}/CoinKiller-x86_64.AppImage
Expand All @@ -200,19 +200,19 @@ jobs:

steps:
- name: Download artifacts (Windows)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: CoinKiller-Windows
path: ${{ runner.temp }}/CoinKiller-Windows

- name: Download artifacts (Macos)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: CoinKiller-Macos
path: ${{ runner.temp }}/CoinKiller-Macos

- name: Download artifacts (Linux)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: CoinKiller-Linux
path: ${{ runner.temp }}/CoinKiller-Linux
Expand All @@ -236,4 +236,4 @@ jobs:
files: |
${{ runner.temp }}/*.zip
${{ runner.temp }}/CoinKiller-Macos/*.dmg
${{ runner.temp }}/CoinKiller-Linux/*.AppImage
${{ runner.temp }}/CoinKiller-Linux/*.AppImage

0 comments on commit 1bb8775

Please sign in to comment.