We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3d1b26 commit 8d5b75cCopy full SHA for 8d5b75c
.github/workflows/coding-standards.yml
@@ -82,4 +82,4 @@ jobs:
82
- name: 🧐 Lint Ansible files
83
uses: ansible/[email protected]
84
with:
85
- args: '-c .github/.ansible-lint.yml'
+ args: '-c ${{ github.workspace }}/.github/.ansible-lint.yml'
src/playbook.yml
@@ -1,10 +1,12 @@
1
---
2
3
-- hosts: all
+- name: Generate PHP Dockerfiles
4
+ hosts: all
5
gather_facts: false
6
tags:
7
- template
8
tasks:
- - import_tasks: roles/base/main.yml
9
+ - name: Create dist for all supported PHP versions
10
+ ansible.builtin.import_tasks: roles/base/main.yml
11
12
...
0 commit comments