-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (48 loc) · 1.4 KB
/
blank.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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 curl desktop-file-utils git wget \
base-devel patchelf gtk3 strace gimp ffmpeg ghostscript
# Artix repos don't have zsyc
wget https://london.mirror.pkgbuild.com/extra/os/x86_64/zsync-0.6.2-5-x86_64.pkg.tar.zst
pacman -U --noconfirm ./zsync-0.6.2-5-x86_64.pkg.tar.zst
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: test
prerelease: true
draft: false
files: |
*.AppImage*
repo_token: ${{ secrets.GITHUB_TOKEN }}