Skip to content

Fix two remaining YAMLlint warnings from ansible-lint. #28

Fix two remaining YAMLlint warnings from ansible-lint.

Fix two remaining YAMLlint warnings from ansible-lint. #28

Workflow file for this run

---
name: Release
'on':
push:
tags:
- '*'
defaults:
run:
working-directory: ansible_collections/geerlingguy/mac
jobs:
release:
name: Release
runs-on: ubuntu-latest
env:
ANSIBLE_GALAXY_TOKEN: ${{ secrets.ANSIBLE_GALAXY_TOKEN }}
ANSIBLE_FORCE_COLOR: 1
steps:
- name: Check out the codebase.
uses: actions/checkout@v2
with:
path: ansible_collections/geerlingguy/mac
- name: Set up Python 3.
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Ansible.
run: pip3 install ansible-core
- name: Release to Ansible Galaxy.
run: ansible-playbook -i 'localhost,' galaxy-deploy.yml -e "github_tag=${{ github.ref }}"