4e5346e2e0
- Added rsync installation in setup-env action for file synchronization. - Excluded playbook_websites.yml from ansible-apply-playbook workflow. - Created a new workflow for building and releasing the Hugo website. - Added submodule for Hugo theme in .gitmodules. - Updated host_vars for production to include websites configuration. - Introduced playbook_websites.yml for managing static files deployment. - Implemented hugo_build script for building and archiving Hugo sites. - Updated inventory to include a new web group for website deployment. - Refactored Terraform configuration to support new website structure. - Removed deprecated WordPress Terraform configuration. - Added .gitignore files for websites and specific Hugo site. - Created archetype and configuration files for the Hugo site. - Added static assets including CV and images for the Hugo site. - Integrated Hugo profile theme as a submodule for the website.
45 lines
1.4 KiB
YAML
45 lines
1.4 KiB
YAML
name: Ansible Apply Playbook that Triggered the Workflow
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- ansible/playbook_*.yml
|
|
- '!ansible/playbook_websites.yml'
|
|
jobs:
|
|
ansible-apply:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup environment
|
|
id: setup_env
|
|
uses: ./.github/actions/setup-env
|
|
|
|
- name: Setup Ansible environment
|
|
uses: ./.github/actions/setup-ansible-env
|
|
with:
|
|
project-id: ${{ secrets.BW_PROJECT_ID }}
|
|
organization-id: ${{ secrets.BW_ORGANIZATION_ID }}
|
|
access-token: ${{ secrets.BW_ACCESS_TOKEN }}
|
|
ansible-user: ${{ secrets.ANSIBLE_USER }}
|
|
trusted-hosts: ${{ secrets.TRUSTED_HOSTS }}
|
|
|
|
- name: Apply the playbook that triggered the workflow
|
|
env:
|
|
BW_PROJECT_ID: ${{ secrets.BW_PROJECT_ID }}
|
|
BW_ORGANIZATION_ID: ${{ secrets.BW_ORGANIZATION_ID }}
|
|
BW_ACCESS_TOKEN: ${{ secrets.BW_ACCESS_TOKEN }}
|
|
ANSIBLE_USER: ${{ secrets.ANSIBLE_USER }}
|
|
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
|
|
CHANGED_FILES: ${{ steps.setup_env.outputs.CHANGED_FILES }}
|
|
run: |
|
|
cd ansible
|
|
for PLAYBOOK in $(echo $CHANGED_FILES | grep -oP 'playbook_\K\w+'); do
|
|
sectool -f ../sectool.json exec ansible-playbook -u $ANSIBLE_USER playbook_$PLAYBOOK.yml
|
|
done
|