mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Add Arch Linux builder & AUR syncer workflow (#2499)
This commit is contained in:
parent
382462f465
commit
771bf260c5
1 changed files with 22 additions and 0 deletions
22
.github/workflows/push-aur.yml
vendored
Normal file
22
.github/workflows/push-aur.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
name: Build on Arch Linux
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
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: ${{ github.ref != 'refs/heads/master' }}
|
Loading…
Reference in a new issue