Skip to content

Release Boxes Appimage #39

Release Boxes Appimage

Release Boxes Appimage #39

Workflow file for this run

name: Release Boxes Appimage
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
on:
schedule:
- cron: "0 14 * * 3"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build
run: |
APP=gnome-boxes
sudo apt update && sudo apt install libfuse2 desktop-file-utils
wget -q https://raw.githubusercontent.com/ivan-hc/Conty/master/create-conty.sh
wget -q https://raw.githubusercontent.com/ivan-hc/Conty/master/conty-start.sh
chmod +x create-arch-bootstrap.sh create-conty.sh "$APP"-conty-builder.sh
sudo ./create-arch-bootstrap.sh && ./create-conty.sh
mkdir -p tmp/"$APP".AppDir
mv ./conty.sh tmp/"$APP".AppDir/ || exit 1
./"$APP"-conty-builder.sh
mkdir dist
mv *AppImage* dist/
- name: Upload artifact
uses: actions/upload-artifact@v4.4.0
with:
name: Boxes-x86_64.AppImage
path: 'dist'
release:
needs: [build]
permissions: write-all
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4.1.8
with:
name: Boxes-x86_64.AppImage
- name: release
uses: marvinpinto/action-automatic-releases@latest
with:
title: Continuous build
automatic_release_tag: continuous
prerelease: false
draft: false
files: |
*.AppImage*
repo_token: ${{ secrets.GITHUB_TOKEN }}