chore(cargo): msrv is 1.65 #31
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-release | |
on: | |
push: | |
tags: | |
- "*" # Run on any tag | |
jobs: | |
aur-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Publish AUR package | |
uses: anas-elgarhy/[email protected] | |
with: | |
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
pkgbuild_path: archpackage/PKGBUILD # Use this if the PKGBUILD file is not in the root directory | |
# aur_submodule_path: archpackage/aarty | |
git_username: Anas Elgarhy # Use this if you want to change the git username (recommended) | |
git_email: [email protected] # Use this if you want to change the git email (recommended) | |
commit_message: UpUp Update %FILENAME% to %VERSION% yoo # Use this if you want to change the commit message | |
try_build_and_install: false |