Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/Deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Deploy to PRODUCTION
working-directory: ansible
run: |
echo "${{ secrets.VAULT_PASSWORD_PROD }}" > vault_pass.txt
echo '${{ secrets.VAULT_PASSWORD_PROD }}' > vault_pass.txt
ansible-playbook -i hosts playbooks/site.yml \
--limit=prod \
--vault-password-file vault_pass.txt
Expand All @@ -49,10 +49,12 @@ jobs:
github.event.pull_request.merged == true &&
github.event.pull_request.base.ref == 'develop'
runs-on: ubuntu-latest
environment: staging

steps:
- name: Checkout repository
uses: actions/checkout@v4


- name: Setup Python
uses: actions/setup-python@v4
Expand Down