Skip to content

Commit

Permalink
Adds action to install platform
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Feb 3, 2024
1 parent ac6bc96 commit dc3bafa
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,25 @@ jobs:
image: ea31337/ea-tester:dev
steps:
- uses: actions/checkout@v3
- name: Install platform
uses: dawidd6/action-ansible-playbook@v2
with:
playbook: platform-install.yml
directory: ./ansible
configuration: |
[defaults]
nocows = false
stdout_callback = yaml
# Optional, SSH private key
key: ${{secrets.SSH_PRIVATE_KEY}}
# Optional, literal inventory file contents
inventory: |
[all]
localhost
requirements: galaxy-requirements.yml
# Optional, additional flags to pass to ansible-playbook
options: |
--verbose
- name: Run local action (syntax only)
uses: ./
with:
Expand Down

0 comments on commit dc3bafa

Please sign in to comment.