Skip to content

Commit

Permalink
Update blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmz1 authored Oct 21, 2023
1 parent 5f36dbe commit b4e5c70
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,23 +44,30 @@ jobs:
wget -q "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage" -O appimagetool ; chmod a+x appimagetool
wget -q "https://github.com/AppImage/AppImageKit/releases/download/continuous/AppRun-x86_64" -O AppRun ; chmod a+x AppRun
git clone https://github.com/dolphin-emu/dolphin.git dolphin-emu
mkdir $HOME/lucas/
cp dolphin-emu.desktop dolphin-emu.png $HOME/lucas/
cp AppRun $HOME/lucas/
mkdir lucas/
cp dolphin-emu.desktop dolphin-emu.png lucas/
cp AppRun lucas/
cd ./dolphin-emu
git submodule update --init --recursive
mkdir Build && cd Build
cmake .. -DCMAKE_INSTALL_PREFIX="$HOME/lucas/"
make install
cd ..
# Runs a set of commands using the runners shell
- name: Build appimage
run: |
./linuxdeploy --appdir $HOME/lucas/
ARCH=x86_64 ./appimagetool -n $HOME/lucas/
find $HOME -name '**.AppImage**' | xargs -i -t -exec mv {} $HOME
pwd
./linuxdeploy --appdir lucas/
ARCH=x86_64 ./appimagetool -n lucas/
- name: Download a Build Artifact
uses: actions/[email protected]
with:
# Artifact name
name: # optional
# Destination path
path: # optional
- name: release
uses: "marvinpinto/action-automatic-releases@6273874b61ebc8c71f1a61b2d98e234cf389b303"
Expand Down

0 comments on commit b4e5c70

Please sign in to comment.