Skip to content

ericsysmin.docker: 1.0.0 Release #2

ericsysmin.docker: 1.0.0 Release

ericsysmin.docker: 1.0.0 Release #2

Workflow file for this run

---
name: release
on:
release:
types:
- created
jobs:
release:
runs-on: ubuntu-latest
env:
ANSIBLE_GALAXY_TOKEN: ${{ secrets.ANSIBLE_GALAXY_TOKEN }}
ANSIBLE_FORCE_COLOR: 1
steps:
- name: Check out code
uses: actions/checkout@v1
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install molecule yamllint ansible-lint docker
- name: Run role test
run: >-
ansible-playbook -i 'localhost,' build/galaxy_deploy.yml -e "github_tag=${{ github.ref }}"