-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d04e051
commit 33b546c
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Your Appimage | ||
concurrency: | ||
group: build-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
on: | ||
schedule: | ||
- cron: "0 21 * * 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 && pacman -S --noconfirm base-devel curl desktop-file-utils git wget \ | ||
python musl base-devel patchelf gtk3 libglvnd qt5-base qt5-wayland qt5-svg fuse3 | ||
chmod +x ./make-appdir.sh ./make-appimage.sh | ||
./make-appdir.sh && ./make-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 }} |