mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 15:27:17 +00:00
this also requires to move default configuration files to share/ahriman. Thus the following features have been added * default configuration is not stored in /usr/share/ahriman/settings * package installed via PKGBUILD now copies files from /usr * configuration class now fallbacks to default in /usr
25 lines
422 B
YAML
25 lines
422 B
YAML
name: setup
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
run-setup:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
image: archlinux:latest
|
|
volumes:
|
|
- ${{ github.workspace }}:/build
|
|
options: --privileged -w /build
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: setup the service in arch linux container
|
|
run: .github/workflows/setup.sh
|