From e3530ce7c7cb917a738dd6f0d025545d45fe2555 Mon Sep 17 00:00:00 2001 From: Christian Lang Date: Mon, 23 Oct 2023 15:08:54 +0200 Subject: [PATCH] WIP ansible-run --- .github/workflows/ansible-run.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/ansible-run.yml diff --git a/.github/workflows/ansible-run.yml b/.github/workflows/ansible-run.yml new file mode 100644 index 0000000..868cda4 --- /dev/null +++ b/.github/workflows/ansible-run.yml @@ -0,0 +1,15 @@ +name: ansible-run + +on: [push, pull_request] + +jobs: + ansible-run: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + + - name: Update installed packages + run: sudo apt update && sudo apt upgrade -y + + - name: Run ansible playbook + run: ./provision.sh