-
-
Notifications
You must be signed in to change notification settings - Fork 4
33 lines (33 loc) · 947 Bytes
/
Copy pathstaging.yml
File metadata and controls
33 lines (33 loc) · 947 Bytes
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
name: staging.yml
on:
push:
branches:
- 'development'
paths:
- 'openssh-gui-git/PKGBUILD'
concurrency:
group: staging-${{ github.ref }}
cancel-in-progress: true
jobs:
aur_publish:
name: Update GIT AUR package
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v7
with:
fetch-depth: '1'
sparse-checkout: |
openssh-gui-git/PKGBUILD
ref: ${{ github.ref }}
- name: Deploy
uses: KSXGitHub/github-actions-deploy-aur@v4.1.3
with:
pkgname: openssh-gui-git
pkgbuild: openssh-gui-git/PKGBUILD
commit_username: ${{ github.repository_owner }}
commit_email: ${{ github.repository_owner }}@users.noreply.github.com
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
commit_message: ${{ github.event.head_commit.message }}
allow_empty_commits: true