Merge pull request #377 from manzsolutions-lpr/fix-scrape-config-path #47
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: Ansible collection publish | |
on: | |
push: | |
tags: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Install tools" | |
run: "python -m pip install ansible-base --disable-pip-version-check" | |
- name: "Build the collection" | |
run: ansible-galaxy collection build | |
- name: "Upload built collection to release" | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: prometheus-prometheus-*.tar.gz | |
file_glob: true | |
tag: ${{ github.ref }} | |
overwrite: true | |
- name: "Publish collection on galaxy" | |
uses: ansible/ansible-publish-action@v1.0.0 | |
with: | |
api_key: ${{ secrets.ANSIBLE_GALAXY_API_KEY }} |