1.0.40 - Publishing to AUR #29
Workflow file for this run
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
name: AUR | |
run-name: ${{ github.ref_name }} - Publishing to AUR | |
on: | |
release: | |
types: [created] | |
jobs: | |
publish-to-aur: | |
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: false | |
try_build_and_install: true |