fix(cicd): fixed build process
Some checks failed
Build Bootstrap Bundle / build (push) Has been cancelled

This commit is contained in:
Sebastian Rust
2026-02-06 10:29:58 +01:00
parent 6fd080a3bb
commit 7d34eb34ce
3 changed files with 9 additions and 2 deletions

View File

@@ -28,6 +28,9 @@ jobs:
python3 -m venv .venv python3 -m venv .venv
.venv/bin/pip install ansible .venv/bin/pip install ansible
echo "$PWD/.venv/bin" >> $GITHUB_PATH echo "$PWD/.venv/bin" >> $GITHUB_PATH
- name: install Ansible dependencies
run: |
ansible-galaxy role install -r requirements.yml --roles-path roles
- name: Verify playbook syntax - name: Verify playbook syntax
run: | run: |
@@ -35,7 +38,7 @@ jobs:
- name: Build bundle - name: Build bundle
run: | run: |
bundle-playbook bootstrap.yml -o bootstrap.run bundle-playbook -f bootstrap.yml -o bootstrap.run
- name: Generate checksums - name: Generate checksums
run: | run: |

View File

@@ -70,7 +70,7 @@
- role: users - role: users
become: yes become: yes
- role: ssh_hardening - role: dev-sec.ssh-hardening
become: yes become: yes
post_tasks: post_tasks:

4
requirements.yml Normal file
View File

@@ -0,0 +1,4 @@
---
roles:
- name: dev-sec.ssh-hardening