Remove docker_compose prefix from some roles #8
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: Deploy diun | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- main | |
paths: | |
- roles/diun/** | |
- .github/workflows/diun.yaml | |
pull_request: | |
paths: | |
- roles/diun/** | |
- .github/workflows/diun.yaml | |
jobs: | |
diun: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
python-version: 3.x | |
- run: | | |
sed -i '/vars_files/I,+1 d' main.yaml | |
sed -i '/vault_password_file/d' ansible.cfg | |
pip install ansible | |
ansible-galaxy install --role-file requirements.yaml | |
ansible-playbook main.yaml --limit localhost --tags diun \ | |
--extra-vars "telegram_token=ci telegram_chatids=ci" | |
docker ps --filter name=diun | grep --quiet diun |