Skip to content

Release VLC GIT Appimage #370

Release VLC GIT Appimage

Release VLC GIT Appimage #370

Workflow file for this run

name: Release VLC GIT Appimage
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
on:
schedule:
- cron: "0 2 * * 0-6"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: build
run: |
sudo apt update
sudo apt install desktop-file-utils
chmod a+x ./vlc-git-junest.sh
./vlc-git-junest.sh
mkdir dist
mv *AppImage* dist/
- name: Upload artifact
uses: actions/upload-artifact@v4.4.0
with:
name: VLC_media_player-GIT-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: VLC_media_player-GIT-x86_64.AppImage
- name: release
uses: marvinpinto/action-automatic-releases@latest
with:
title: Continuous GIT build (JuNest Arch Linux-based AppImage)
automatic_release_tag: continuous-git
prerelease: true
draft: false
files: |
*.AppImage*
repo_token: ${{ secrets.GITHUB_TOKEN }}