ci: lint inventory before deploys

This commit is contained in:
Price Hiller 2023-01-31 18:39:12 -06:00
parent 75f16a5097
commit e52ad6b130
2 changed files with 30 additions and 3 deletions

View File

@ -8,14 +8,14 @@ on:
jobs:
build-image:
uses: ./.github/workflows/build-docker.yml
lint-inventory:
uses: ./.github/workflows/lint-inventory.yml
secrets: inherit
deploy:
runs-on: self-hosted
needs:
- build-image
- lint-inventory
container:
image: ${{ vars.DOCKER_REGISTRY_URL }}/${{ vars.ansible_container }}:latest
credentials:

27
.github/workflows/lint-inventory.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: Lint Inventory
on:
workflow_call:
jobs:
build-image:
uses: ./.github/workflows/build-docker.yml
secrets: inherit
lint-inventory:
runs-on: self-hosted
needs:
- build-image
container:
image: ${{ vars.DOCKER_REGISTRY_URL }}/${{ vars.ansible_container }}:latest
credentials:
username: "${{ secrets.DOCKER_REGISTRY_USER }}"
password: "${{ secrets.DOCKER_REGISTRY_PASSWORD }}"
steps:
- uses: actions/checkout@v3
- name: Lint Inventory
run: |
yamllint ./inventory.yml