github: fix build-deb-packages #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build AppImage | |
on: | |
push: | |
branches: | |
- main | |
- master | |
pull_request: | |
branches: | |
- main | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up CentOS 7 Docker | |
run: | | |
docker run --rm -v $(pwd):/workspace -w /workspace centos:7 /bin/bash -c " | |
yum install -y epel-release | |
yum groupinstall -y 'Development Tools' | |
yum install -y gtk3-devel glib2-devel gettext-devel desktop-file-utils \ | |
patchelf wget libtool autoconf automake pkgconfig | |
wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage | |
chmod +x linuxdeploy-x86_64.AppImage | |
./autogen.sh | |
./configure | |
make | |
mkdir -p AppDir/usr/bin | |
cp src/xnec2c AppDir/usr/bin/ | |
cp resources/xnec2c.svg AppDir/usr/share/icons/hicolor/scalable/apps/ | |
cp files/xnec2c.desktop AppDir/usr/share/applications/ | |
./linuxdeploy-x86_64.AppImage --appdir AppDir --output appimage | |
mv xnec2c*.AppImage xnec2c-${{ github.sha }}.AppImage | |
chmod +x xnec2c-${{ github.sha }}.AppImage | |
./xnec2c-${{ github.sha }}.AppImage --appimage-extract-and-run -h | |
" | |
- name: Upload the AppImage | |
uses: actions/upload-artifact@v2 | |
with: | |
name: xnec2c.AppImage | |
path: xnec2c-${{ github.sha }}.AppImage |