* Update README.md
* Update release-cross.yml
* Update release.yml
* style(self_update): Run cargo fmt (#108)
The commit 9105a8aac is not formatted, which breaks the CI check.
Co-authored-by: Thomas Schönauer <37108907+DottoDev@users.noreply.github.com>
* Cleanup CI/CD pipeline (#115)
Co-authored-by: pan93412 <pan93412@gmail.com>
23 lines
498 B
YAML
23 lines
498 B
YAML
name: Publish to AUR
|
|
|
|
on:
|
|
# workflow_run:
|
|
# workflows: ["Check SemVer compliance"]
|
|
# types:
|
|
# - completed
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
jobs:
|
|
aur-publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Publish AUR package
|
|
uses: ATiltedTree/create-aur-release@v1
|
|
with:
|
|
package_name: topgrade
|
|
commit_username: "Thomas Schönauer"
|
|
commit_email: t.schoenauer@hgs-wt.at
|
|
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
|