Skip to content

Commit

Permalink
Create test.playbook.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
noatgnu authored Oct 27, 2024
1 parent 164a87b commit 9edda2d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.playbook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Deploy with Self-Signed SSL Certificate

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install Ansible
run: |
python -m pip install --upgrade pip
pip install ansible
- name: Run Ansible Playbook
run: |
ansible-playbook test.ansible.yml --extra-vars "domain=localhost"

0 comments on commit 9edda2d

Please sign in to comment.