aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/release-aur.yml
blob: eb4b5907546746ba02165c334e05dd16d555eb07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Release to AUR

on:
  workflow_dispatch:
  push:
    branches: [master]

jobs:
  tests:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Generate PKGBUILD
        run: |
          mkdir -p ./tmp
          bash build/gen_pkgbuild.sh > ./tmp/PKGBUILD
          cat ./tmp/PKGBUILD