Skip to content

Build Appimage

Build Appimage #11

Workflow file for this run

name: SpeedCrunch Appimage
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
on:
schedule:
- cron: "0 16 1/30 * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: build
run: |
sudo apt update
sudo apt install libfuse2 desktop-file-utils
wget https://raw.githubusercontent.com/Samueru-sama/SpeedCrunch-AppImage/main/speedcrunch-appimage.sh
chmod a+x ./speedcrunch-appimage.sh
./speedcrunch-appimage.sh
mkdir dist
mv *AppImage dist/
mv *zsync dist/
- name: Upload artifact
uses: actions/[email protected]
with:
name: SpeedCrunch-x86_64.AppImage
path: 'dist'
release:
needs: [build]
permissions: write-all
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v1
with:
name: SpeedCrunch-x86_64.AppImage
- name: release
uses: marvinpinto/action-automatic-releases@latest
with:
title: Continuous build
automatic_release_tag: continuous
prerelease: false
draft: false
files: |
SpeedCrunch-x86_64.AppImage
repo_token: ${{ secrets.GITHUB_TOKEN }}