aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build-archlinux.yml
blob: ea018746ec24a8a387df0054b059c6864491b1db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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'