Install ansible-aur
using galaxy rather than yay
Hoepfully this means it'll stay up to date more
This commit is contained in:
parent
a3cedaf4a7
commit
3fd66ac883
4 changed files with 3 additions and 3 deletions
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
|
@ -13,7 +13,5 @@ jobs:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: ./scripts/setup.sh
|
run: ./scripts/setup.sh
|
||||||
- name: Install ansible aur module
|
|
||||||
run: git clone https://github.com/kewlfft/ansible-aur.git ~/.ansible/plugins/modules/aur --depth=1
|
|
||||||
- name: Run linters
|
- name: Run linters
|
||||||
run: ./scripts/lint.sh
|
run: ./scripts/lint.sh
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
Settings and Preferences for transfer between machines
|
Settings and Preferences for transfer between machines
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
- [`ansible-aur`](https://github.com/kewlfft/ansible-aur/)
|
|
||||||
- SSH / GPG keys installed
|
- SSH / GPG keys installed
|
||||||
- Correctly setup `~/.dotfiles` directory
|
- Correctly setup `~/.dotfiles` directory
|
||||||
|
|
||||||
|
|
1
galaxy-requirements.yml
Normal file
1
galaxy-requirements.yml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
- src: kewlfft.aur
|
|
@ -5,3 +5,5 @@ set -ex
|
||||||
python -m venv env
|
python -m venv env
|
||||||
|
|
||||||
env/bin/pip install -r dev-requirements.txt
|
env/bin/pip install -r dev-requirements.txt
|
||||||
|
|
||||||
|
env/bin/ansible-galaxy install -r galaxy-requirements.yml
|
||||||
|
|
Loading…
Reference in a new issue