Skip to content

Release Unofficial Avidemux Appimage #74

Release Unofficial Avidemux Appimage

Release Unofficial Avidemux Appimage #74

Workflow file for this run

name: Release Unofficial Avidemux Appimage
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
on:
schedule:
- cron: "0 14 * * 0"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build
run: |
sudo apt update && sudo apt install libfuse2
wget https://raw.githubusercontent.com/ivan-hc/Avidemux-unofficial-appimage/main/avidemux
chmod a+x ./avidemux
sudo ./avidemux
mkdir dist
VERSION=$(curl -s https://deb-multimedia.org/dists/testing/main/binary-amd64/package/avidemux-qt | grep "Filename" | cut -c 48- | rev | cut -c 17- | rev)
mv *AppImage dist/Avidemux-Unofficial-$VERSION-x86_64.AppImage
- uses: gautamkrishnar/keepalive-workflow@v1
with:
gh_token: ${{ secrets.GH_TOKEN }}
- name: Upload artifact
uses: actions/[email protected]
with:
name: Avidemux-x86_64.AppImage
path: 'dist'
release:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v1
with:
name: Avidemux-x86_64.AppImage
- name: release
uses: marvinpinto/action-automatic-releases@latest
with:
title: Continuous build
automatic_release_tag: continuous
prerelease: false
draft: false
files: |
Avidemux-x86_64.AppImage
repo_token: ${{ secrets.GITHUB_TOKEN }}