mirror of
https://github.com/optim-enterprises-bv/nDPId.git
synced 2025-10-29 09:22:23 +00:00
37 lines
828 B
YAML
37 lines
828 B
YAML
name: ArchLinux PKGBUILD
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- tmp
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
types: [opened, synchronize, reopened]
|
|
release:
|
|
types: [created]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: false
|
|
fetch-depth: 1
|
|
- name: Prepare for ArchLinux packaging
|
|
run: |
|
|
sudo chmod -R 0777 .
|
|
mv -v packages/archlinux packages/ndpid-testing
|
|
- uses: 2m/arch-pkgbuild-builder@v1.16
|
|
with:
|
|
debug: true
|
|
target: 'pkgbuild'
|
|
pkgname: 'packages/ndpid-testing'
|
|
- name: Upload PKG
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: nDPId-archlinux-packages
|
|
path: packages/ndpid-testing/*.pkg.tar.zst
|