Skip to content

fix: use paru-git instead of paru-bin #56

fix: use paru-git instead of paru-bin

fix: use paru-git instead of paru-bin #56

Workflow file for this run

name: Test
on: [push, pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
pkgname: [paru, yay, neovim-git]
steps:
- uses: actions/checkout@v4
- name: Clone test repo
run: git clone https://aur.archlinux.org/${{ matrix.pkgname }}.git
- name: Build package
uses: ./
id: build-package
with:
path: ${{ matrix.pkgname }}
- name: Upload package
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.pkgname }}-package-${{ github.run_id }}
path: ${{ steps.build-package.outputs.pkgfile }}
- name: Upload whole directory
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.pkgname }}-directory-${{ github.run_id }}
path: ${{ matrix.pkgname }}/**