Skip to content

Commit

Permalink
Downgrade artifact actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lymia committed Dec 19, 2023
1 parent f07c7d5 commit f7ae4c1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build_dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- run: scripts/ci/build-natives_linux.sh

# Upload artifacts
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: mppatch_ci_natives-linux.tar.gz
path: target/mppatch_ci_natives-linux.tar.gz
Expand All @@ -63,7 +63,7 @@ jobs:
- run: git fetch --prune --unshallow --tags

# Download artifacts
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: mppatch_ci_natives-linux.tar.gz
path: target/mppatch_ci_natives-linux
Expand All @@ -74,7 +74,7 @@ jobs:
- run: scripts/ci/build-installer_linux.sh

# Upload artifacts
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: mppatch_ci_installer-linux
path: target/MPPatch-Installer_*
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
scoop install nsis
# Download artifacts
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: mppatch_ci_natives-linux.tar.gz
path: target/mppatch_ci_natives-linux
Expand All @@ -118,7 +118,7 @@ jobs:
- run: powershell -file scripts/ci/build-installer_win32.ps1

# Upload artifacts
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: mppatch_ci_installer-win32
path: target/MPPatch-Installer_*
Expand All @@ -139,11 +139,11 @@ jobs:
run: 'echo "VERSION_STR=ci_build-$GITHUB_RUN_NUMBER" >> $GITHUB_ENV'

# Download artifacts
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: mppatch_ci_installer-linux
path: mppatch_ci_installer-linux
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: mppatch_ci_installer-win32
path: mppatch_ci_installer-win32
Expand Down
3 changes: 3 additions & 0 deletions scripts/ci/build-installer_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,6 @@ cd target/dist-build/linux || exit 1
LDAI_COMP=xz ../../linuxdeploy --appdir AppDir/ --output appimage || exit 1
cd ../../.. || exit 1
cp -v target/dist-build/linux/MPPatch_Installer-x86_64.AppImage target/"$APPIMAGE_NAME" || exit 1

# Debug
ls target

0 comments on commit f7ae4c1

Please sign in to comment.