Collection renamed from network to skupper (#33) #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: | |
on: | |
push: | |
# Sequence of patterns matched against tags | |
# Right now, we run this job automatically when a semantically versioned | |
# tag is pushed (with an optional suffix). | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+*' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
- name: Install ansible, ansible-lint, yamllint | |
run: pip3 install yamllint ansible ansible-lint | |
- name: Run ansible-lint | |
run: make ansible-lint | |
- name: Ansible Publish | |
uses: ansible/[email protected] | |
with: | |
api_key: ${{ secrets.ANSIBLE_API_KEY }} | |
src_path: /github/workspace/skupper/skupper |