This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
MANUAL: Publish Release to AUR #23
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: 'MANUAL: Publish Release to AUR' | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: "version that should be released" | |
required: true | |
type: string | |
# push: | |
# tags: | |
# - '*' | |
jobs: | |
aur-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Publish mondoo AUR package | |
uses: KSXGitHub/github-actions-deploy-aur@v2.5.0 | |
with: | |
pkgname: mondoo | |
pkgbuild: ./mondoo/PKGBUILD | |
commit_username: ${{ secrets.AUR_USERNAME }} | |
commit_email: ${{ secrets.AUR_EMAIL }} | |
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} | |
commit_message: ${{ github.event.inputs.version }} | |
force_push: 'true' | |
- name: Publish cnquery AUR package | |
uses: KSXGitHub/github-actions-deploy-aur@v2.5.0 | |
with: | |
pkgname: cnquery | |
pkgbuild: ./cnquery/PKGBUILD | |
commit_username: ${{ secrets.AUR_USERNAME }} | |
commit_email: ${{ secrets.AUR_EMAIL }} | |
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} | |
commit_message: ${{ github.event.inputs.version }} | |
force_push: 'true' | |
- name: Publish cnspec AUR package | |
uses: KSXGitHub/github-actions-deploy-aur@v2.5.0 | |
with: | |
pkgname: cnspec | |
pkgbuild: ./cnspec/PKGBUILD | |
commit_username: ${{ secrets.AUR_USERNAME }} | |
commit_email: ${{ secrets.AUR_EMAIL }} | |
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} | |
commit_message: ${{ github.event.inputs.version }} | |
force_push: 'true' |