-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CI] Automate Snaps and AUR releases (#526)
* feat: automate snaps * feat: adds AUR release script * fix: check pkgrel as well * chore: test aur automation * fix: archlinux image * fix: install openssh * fix: download url * fix: remove v from download package * fix_ install git * fix: working dir * chore: try makepkg as nobody * chore: try to manually update SRCINFO * fix: aur repo * fixing hosts second time * trying to clone aur repo again * aur craziness * another try * try using gh action * chore: run only on releases * chore: remove unecessary dependency --------- Co-authored-by: Flavio F Lima <[email protected]>
- Loading branch information
1 parent
b01c919
commit 45a9c2f
Showing
2 changed files
with
81 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: Update AUR | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
update-aur: | ||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: archlinux | ||
|
||
steps: | ||
- name: Install Dependencies | ||
run: | | ||
pacman -Syu --noconfirm wget jq | ||
- name: Download Package | ||
run: | | ||
set -x | ||
latest_version=$(curl -s https://api.github.com/repos/HyperPlay-Gaming/hyperplay-desktop-client/releases/latest | jq -r .tag_name) | ||
version_without_v=$(echo $latest_version | cut -c 2-) | ||
wget https://github.com/HyperPlay-Gaming/hyperplay-desktop-client/releases/download/${latest_version}/hyperplay-${version_without_v}.pacman -O hyperplay.pacman | ||
set +x | ||
if: ${{ success() }} | ||
|
||
- name: Update PKGBUILD | ||
run: | | ||
set -x | ||
latest_version=$(curl -s https://api.github.com/repos/HyperPlay-Gaming/hyperplay-desktop-client/releases/latest | jq -r .tag_name) | ||
pkgver=${latest_version#v} | ||
pkgrel=1 | ||
url="https://github.com/HyperPlay-Gaming/hyperplay-desktop-client" | ||
_filename=hyperplay-${pkgver}.pacman | ||
source=("$url/releases/download/$latest_version/$_filename") | ||
md5sums=($(md5sum hyperplay.pacman | cut -d' ' -f1)) | ||
cat <<EOF > PKGBUILD | ||
# Maintainer: flaviofearn <[email protected]> | ||
# Maintainer: blingus <[email protected]> | ||
pkgname=hyperplay | ||
pkgver=$pkgver | ||
pkgrel=$pkgrel | ||
pkgdesc="An open source Web3 gaming platform." | ||
arch=('x86_64') | ||
url="$url" | ||
license=('GPL3') | ||
depends=('gawk') | ||
_filename=$_filename | ||
source=("$source") | ||
noextract=("$_filename") | ||
md5sums=(${md5sums[@]}) | ||
options=(!strip) | ||
package() { | ||
tar -xJv -C "\$pkgdir" -f "\$srcdir/\$_filename" usr opt | ||
mkdir "\$pkgdir/usr/bin" | ||
ln -s "/opt/HyperPlay/hyperplay" "\$pkgdir/usr/bin/hyperplay" | ||
} | ||
# vim:set ts=2 sw=2 et: syntax=sh | ||
EOF | ||
cat PKGBUILD | ||
set +x | ||
if: ${{ success() }} | ||
|
||
- name: Publish AUR package | ||
uses: KSXGitHub/github-actions-deploy-aur@v2 | ||
with: | ||
pkgname: hyperplay | ||
pkgbuild: ./PKGBUILD | ||
commit_username: ${{ secrets.AUR_USERNAME }} | ||
commit_email: ${{ secrets.AUR_EMAIL }} | ||
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE }} | ||
commit_message: Update AUR package | ||
ssh_keyscan_types: rsa,dsa,ecdsa,ed25519 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters