Release #219
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub Action entrypoints | |
on: | |
push: | |
branches: [main] | |
jobs: | |
ansible: | |
defaults: | |
run: | |
working-directory: ./ansible/ | |
runs-on: self-hosted | |
steps: | |
- name: Setup checkout environment | |
uses: actions/checkout@v3 | |
# NEED INSTALLATION OF --> ansible and pfsensible module ON THE RUNNER | |
- name: Run Ansible playbook | |
run: | | |
ansible-playbook -i inventory.yml playbook.yml |