Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update release for CRC publish #654

Merged
merged 2 commits into from
Jul 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 20 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,39 @@ jobs:
matrix:
awx_version:
- devel
- 22.4.0
- 22.3.0
- 22.2.0
- 22.1.0
- 22.0.0
- 21.14.0
- 21.13.0
- 21.11.0
uses: "./.github/workflows/ci_standalone_versioned.yml"
with:
awx_version: ${{ matrix.awx_version }}
release:
needs:
- ci_standalone
uses: "redhat-cop/ansible_collections_tooling/.github/workflows/release_pipeline_single.yml@main"
uses: "redhat-cop/ansible_collections_tooling/.github/workflows/release_pipeline_dual.yml@main"
with:
collection_namespace: infra
collection_name: controller_configuration
# Galaxy Publish
collection_namespace_1: infra
collection_name_1: controller_configuration
publish_url_collection_1: https://galaxy.ansible.com
galaxy_publish_1: true
ah_publish_1: false
# CRC Publish
collection_namespace_2: infra
collection_name_2: controller_configuration
publish_url_collection_2: https://cloud.redhat.com/api/automation-hub/
galaxy_publish_2: false
ah_publish_2: true
collection_version: ${{ github.ref_name }}
collection_repo: https://github.com/redhat-cop/controller_configuration/
quay_username: redhat_cop
collection_dependencies: awx.awx
matrix_message: This Ansible collection allows for easy interaction with an AWX or Ansible Controller server via Ansible roles using the AWX/Controller collection modules.
secrets:
galaxy_api_key: ${{ secrets.GALAXY_INFRA_KEY }}
token: ${{ secrets.GITHUB_TOKEN }}
collection_api_key_1: ${{ secrets.GALAXY_INFRA_KEY }}
collection_api_key_2: ${{ secrets.CRC_PUBLISH_KEY }}
git_token: ${{ secrets.GITHUB_TOKEN }}
quay_token: ${{ secrets.quay_token }}
matrix_token: ${{ secrets.matrix_token }}
...
Loading