mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
523e0c5ef4
Co-authored-by: Felanbird <41973452+Felanbird@users.noreply.github.com>
27 lines
558 B
YAML
27 lines
558 B
YAML
---
|
|
name: Build on Arch Linux
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: build-archlinux-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Sync AUR package with current version
|
|
uses: pajlada/aur-sync-action@master
|
|
with:
|
|
package_name: chatterino2-git
|
|
commit_username: chatterino2-ci
|
|
commit_email: chatterino2-ci@pajlada.com
|
|
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
|
|
dry_run: true
|