Appimage #35
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 | |
permissions: write-all | |
container: artixlinux/artixlinux:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- 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 | |
#Continuous Release | |
- name: Del Previous Release | |
run: | | |
gh release delete "continuous" --repo "${GITHUB_REPOSITORY}" --cleanup-tag -y | |
env: | |
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
continue-on-error: true | |
- name: Continuous Releaser | |
uses: softprops/action-gh-release@v2 | |
with: | |
name: "Continuous build" | |
tag_name: "continuous" | |
prerelease: false | |
draft: false | |
generate_release_notes: false | |
make_latest: true | |
files: | | |
*.AppImage* | |
continue-on-error: false | |
#Snapshot Release | |
- name: Get Date | |
run: | | |
SNAPSHOT_TAG="$(date --utc +'%Y%m%d-%H%M%S')" | |
echo SNAPSHOT_TAG="${SNAPSHOT_TAG}" >> "${GITHUB_ENV}" | |
continue-on-error: false | |
- name: Snapshot Releaser | |
uses: softprops/action-gh-release@v2 | |
with: | |
name: "Snapshot build" | |
tag_name: "${{ env.SNAPSHOT_TAG}}" | |
prerelease: true | |
draft: false | |
generate_release_notes: false | |
make_latest: false | |
files: | | |
*.AppImage* | |
continue-on-error: false |