All checks were successful
Build / build (pull_request) Successful in 1m45s
- add testhost, will be used to verify puppet -> openvox migration - change build -> deploy in deploy job
27 lines
472 B
YAML
27 lines
472 B
YAML
---
|
|
name: Deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: almalinux-8
|
|
container:
|
|
image: git.unkin.net/unkin/almalinux9-actionsdind:latest
|
|
options: --privileged
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Run Terraform Apply
|
|
env:
|
|
VAULT_ROLEID: ${{ secrets.TERRAFORM_INCUS_VAULT_ROLEID }}
|
|
run: |
|
|
make apply
|