Arch publish workflow and build with docker

This commit is contained in:
ChristianVisintin
2020-12-21 11:48:41 +01:00
parent 1a5bd394b6
commit 1d112b3f32
4 changed files with 42 additions and 8 deletions

20
.github/workflows/aur-pub.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: aur-pub
on:
push:
tags:
- "*"
jobs:
aur-publish:
steps:
- uses: actions/checkout@v2
- name: Publish AUR package
uses: KSXGitHub/github-actions-deploy-aur@2.2.3
with:
pkgname: my-awesome-package
pkgbuild: ./dist/pkgs/arch/PKGBUILD
commit_username: ${{ secrets.AUR_USERNAME }}
commit_email: ${{ secrets.AUR_EMAIL }}
ssh_private_key: ${{ secrets.AUR_KEY }}
commit_message: Update AUR package
ssh_keyscan_types: rsa,dsa,ecdsa,ed25519