Trigger rebuild for aarch64/paru #182
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: Trigger rebuild | |
run-name: Trigger rebuild for ${{ inputs.pkgbase }} | |
on: | |
workflow_dispatch: | |
inputs: | |
pkgbase: | |
description: 'Path to pkgbase' | |
required: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: archlinux | |
env: | |
CACTUS_CONFIG: ${{ secrets.CACTUS_CONFIG }} | |
steps: | |
- uses: arch4edu/cactus/actions/upgrade-archlinux@main | |
- name: Install runtime dependencies | |
run: pacman -S --noconfirm --needed python-mysqlclient | |
- uses: arch4edu/cactus/actions/setup-cactus@main | |
- name: Update database | |
run: python -m cactus.detector.trigger ${{ github.event.inputs.pkgbase }} |