Skip to content

Generate AUR

Generate AUR #5

Workflow file for this run

name: Generate AUR
on:
workflow_dispatch:
inputs:
dryRun:
description: 'Dry run'
type: boolean
required: true
default: true
jobs:
update-aur-package:
runs-on: ubuntu-latest
if: github.event.inputs.dryRun == 'false'
steps:
- name: Print github.ref
run: echo "The value of github.ref is ${{ github.ref }}"
# steps:
# - name: Update AUR Package
# uses: aksh1618/update-aur-package@v1.0.5
# with:
# tag_version_prefix: bv # Tags for cli releases are of the form v0.9.6
# package_name: kobweb
# commit_username: phi1309
# commit_email: phi1309@protonmail.com
# ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}