-
-
Notifications
You must be signed in to change notification settings - Fork 104
31 lines (31 loc) · 1023 Bytes
/
aur-release.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
name: Release to aur
on:
release:
types: [created]
workflow_dispatch:
jobs:
aur_publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Prepare AUR package
run: |
version=""
if [ hash git &>/dev/null ]; then
version=$(git describe --abbrev=0 --tags | sed 's/^v//g')
fi
if [ -z "${version}" ]; then
version=$(cat dotdrop/version.py | grep version | sed 's/^.*= .\(.*\).$/\1/g')
fi
[ -z "${version}" ] && exit 1
sed -i "s/^pkgver=.*$/pkgver=${version}/g" packages/arch-dotdrop/PKGBUILD
cat packages/arch-dotdrop/PKGBUILD
- name: Publish to aur
uses: KSXGitHub/[email protected]
with:
pkgname: dotdrop
pkgbuild: ./packages/arch-dotdrop/PKGBUILD
commit_username: ${{ secrets.AUR_USERNAME }}
commit_email: ${{ secrets.AUR_EMAIL }}
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
commit_message: "bump version"