Skip to content

Commit

Permalink
Create blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Samueru-sama authored Nov 12, 2024
1 parent 5efedf2 commit 8c8b814
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 \
patchelf strace strawberry qt6ct qt6-wayland
# 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: continuous
prerelease: false
draft: false
files: |
*.AppImage*
repo_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 8c8b814

Please sign in to comment.