-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Adis Durakovic
committed
Mar 15, 2024
1 parent
de51c7c
commit 94ba495
Showing
1 changed file
with
19 additions
and
0 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,19 @@ | ||
name: aur | ||
run-name: Publishing to AUR | ||
on: | ||
release: | ||
types: [published] | ||
jobs: | ||
Deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Publish AUR package | ||
uses: anas-elgarhy/[email protected] | ||
with: | ||
package_name: resticity # Optional (default: repository name) | ||
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} # The private SSH key to use to push the changes to the AUR | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
pkgbuild_path: packaging/PKGBUILD | ||
update_pkgbuild: true | ||
try_build_and_install: true |