blob: a478734c25853f3bd7a7f7dfaf18782ad6341245 (
plain) (
tree)
|
|
name: Run
on:
workflow_dispatch:
inputs:
hosts:
description: Inventory pattern
required: false
default: cloud
jobs:
run:
name: Run
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up WireGuard
uses: egor-tensin/setup-wireguard@v1
with:
endpoint: '${{ secrets.ENDPOINT }}'
endpoint_public_key: '${{ secrets.ENDPOINT_PUBLIC_KEY }}'
ips: '${{ secrets.IPS }}'
allowed_ips: '${{ secrets.ALLOWED_IPS }}'
private_key: '${{ secrets.WG_PRIVATE_KEY }}'
preshared_key: '${{ secrets.WG_PRESHARED_KEY }}'
- name: Set up ssh-agent
uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: '${{ secrets.SSH_KEY }}'
- name: Install dependencies
run: make deps
- name: Run Ansible
run: make run LIMIT='${{ github.event.inputs.hosts }}'
|