Appimage #29
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Appimage | |
concurrency: | |
group: build-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
schedule: | |
- cron: "0 15 * * 0" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
container: artixlinux/artixlinux:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: build | |
if: always() | |
run: | | |
pacman -Syu --noconfirm base-devel strace patchelf curl wget \ | |
desktop-file-utils git artix-archlinux-support llvm mesa xorg-server-xvfb \ | |
vulkan-radeon vulkan-intel vulkan-nouveau | |
pacman-key --init && pacman-key --populate archlinux | |
printf "\n[extra]\nInclude = /etc/pacman.d/mirrorlist-arch\n" | tee -a /etc/pacman.conf | |
pacman -Syu --noconfirm zsync nss chromium gtk3 wayland libva libtiff \ | |
libxcb xcb-util-keysyms gvfs libepoxy highway libheif libjxl x265 \ | |
xcb-util-cursor gtkmm3 | |
chmod +x ./*-appimage.sh && ./*-appimage.sh | |
mkdir dist | |
mv *.AppImage* dist/ | |
- name: Upload artifact | |
uses: actions/[email protected] | |
with: | |
name: AppImage | |
path: 'dist' | |
release: | |
needs: [build] | |
permissions: write-all | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
name: 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 }} |