Skip to content

DeaDBeeF Appimage

DeaDBeeF Appimage #89

Workflow file for this run

name: DeaDBeeF Appimage
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
on:
schedule:
- cron: "0 16 1/10 * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container: artixlinux/artixlinux:latest
steps:
- uses: actions/checkout@v4
- name: build
run: |
pacman -Syu --noconfirm base-devel curl desktop-file-utils git wget \
base-devel patchelf gtk3 strace
# Artix repos don't have zsyc
wget https://london.mirror.pkgbuild.com/extra/os/x86_64/zsync-0.6.2-5-x86_64.pkg.tar.zst
pacman -U --noconfirm ./zsync-0.6.2-5-x86_64.pkg.tar.zst
chmod a+x ./*-appimage.sh
./deadbeef-nightly-appimage.sh
./deadbeef-stable-appimage.sh
mkdir dist
mv *.AppImage* dist/
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: DeaDBeeF-x86_64.AppImage
path: 'dist'
release:
needs: [build]
permissions: write-all
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: DeaDBeeF-x86_64.AppImage
- name: release
uses: marvinpinto/action-automatic-releases@latest
with:
title: Continuous build
automatic_release_tag: test
prerelease: false
draft: true
files: |
*.AppImage*
repo_token: ${{ secrets.GITHUB_TOKEN }}