commit
043a30bf5c
3 changed files with 5 additions and 5 deletions
2
.github/workflows/AppRun
vendored
2
.github/workflows/AppRun
vendored
|
@ -4,7 +4,7 @@ export QT_QPA_PLATFORMTHEME=gtk3
|
|||
|
||||
mkdir -p $HOME/.local/share/icons/hicolor/scalable/apps && cp $APPDIR/yuzu.svg $HOME/.local/share/icons/hicolor/scalable/apps
|
||||
|
||||
GITVER=`wget -qO- https://www.github.com/pineappleEA/pineapple-src/releases/tag/continuous | grep pineappleEA/pineapple-src/commit/ | cut -d '"' -f 2 | cut -d '/' -f 5 | awk '!x[$0]++'`
|
||||
GITVER=`wget -qO- https://api.github.com/repos/pineappleEA/pineapple-src/releases/latest | grep "releases/tag" | grep -o 'EA-[[:digit:]]*'`
|
||||
APPVER=`cat $APPDIR/version.txt`
|
||||
|
||||
if [[ -z "$GITVER" ]]; then
|
||||
|
|
4
.github/workflows/appimage.sh
vendored
4
.github/workflows/appimage.sh
vendored
|
@ -36,7 +36,8 @@ chmod a+x ./squashfs-root/runtime
|
|||
chmod a+x ./squashfs-root/update.sh
|
||||
#cp /tmp/libssl.so.47 /tmp/libcrypto.so.45 /usr/lib/x86_64-linux-gnu/
|
||||
|
||||
echo $GITHUB_SHA > $HOME/squashfs-root/version.txt
|
||||
version=$(cat /yuzu/README.md | grep -o 'early-access [[:digit:]]*' | cut -c 14-17)
|
||||
echo EA-$version > $HOME/squashfs-root/version.txt
|
||||
|
||||
unset QT_PLUGIN_PATH
|
||||
unset LD_LIBRARY_PATH
|
||||
|
@ -55,7 +56,6 @@ export PATH=$(readlink -f /tmp/squashfs-root/usr/bin/):$PATH
|
|||
mkdir $HOME/squashfs-root/dist/
|
||||
cp /yuzu/dist/yuzu.ico $HOME/squashfs-root/dist/
|
||||
/tmp/squashfs-root/usr/bin/appimagetool $HOME/squashfs-root
|
||||
version=$(cat /yuzu/README.md | grep -o 'early-access [[:digit:]]*' | cut -c 14-17)
|
||||
mv ./yuzu-x86_64.AppImage /yuzu/artifacts/version/Yuzu-EA-$version.AppImage
|
||||
|
||||
# Continuous AppImage
|
||||
|
|
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
@ -38,8 +38,8 @@ jobs:
|
|||
wget -c https://github.com/tcnksm/ghr/releases/download/v0.13.0/ghr_v0.13.0_linux_amd64.tar.gz
|
||||
tar xfv ghr_v0.13.0_linux_amd64.tar.gz
|
||||
version=$(ls artifacts/version |grep Yuzu-EA | cut -d "-" -f 3 | cut -d "." -f 1)
|
||||
ghr_v0.13.0_linux_amd64/ghr -recreate -n 'Continuous build' -b "GitHub https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID" continuous artifacts/
|
||||
ghr_v0.13.0_linux_amd64/ghr -replace -n "EA-$version" -b "GitHub https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID" EA-$version artifacts/version/
|
||||
ghr_v0.13.0_linux_amd64/ghr -replace -n 'Continuous build' -b "Yuzu build with Auto-Updater builtin" continuous artifacts/
|
||||
ghr_v0.13.0_linux_amd64/ghr -replace -n "EA-$version" -b "early-access version $version" EA-$version artifacts/version/
|
||||
|
||||
env:
|
||||
DEFAULT_BRANCH: main
|
||||
|
|
Loading…
Reference in a new issue