31 lines
997 B
YAML
31 lines
997 B
YAML
name: Publish to AUR
|
|
|
|
on:
|
|
# Step "Publish binary AUR package" needs the binaries built by the following
|
|
# workflow, so we wait for it to complete.
|
|
workflow_run:
|
|
workflows: ["Publish release files for CD native and non-cd-native environments"]
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
aur-publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Publish source AUR package
|
|
uses: aksh1618/update-aur-package@v1.0.5
|
|
with:
|
|
tag_version_prefix: v
|
|
package_name: topgrade
|
|
commit_username: "Thomas Schönauer"
|
|
commit_email: t.schoenauer@hgs-wt.at
|
|
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
|
|
- name: Publish binary AUR package
|
|
uses: aksh1618/update-aur-package@v1.0.5
|
|
with:
|
|
tag_version_prefix: v
|
|
package_name: topgrade-bin
|
|
commit_username: "Thomas Schönauer"
|
|
commit_email: t.schoenauer@hgs-wt.at
|
|
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
|