From 3bc7321a7519b94f5a4811c87ae3ab7ca7f15286 Mon Sep 17 00:00:00 2001 From: Sean Sullivan Date: Sun, 25 Jun 2023 16:23:22 -0400 Subject: [PATCH] update pipeline to single release (#108) * update pipeline * update galaxy --- .github/workflows/release.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e3d3c44..b3db713 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,17 +10,15 @@ on: jobs: release: - uses: "redhat-cop/ansible_collections_tooling/.github/workflows/release_pipeline.yml@main" + uses: "redhat-cop/ansible_collections_tooling/.github/workflows/release_pipeline_single.yml@main" with: collection_namespace: infra - collection_namespace_2: redhat_cop collection_name: ee_utilities collection_version: ${{ github.ref_name }} collection_repo: https://github.com/redhat-cop/ee_utilities/ quay_username: redhat_cop secrets: - galaxy_api_key: ${{ secrets.ANSIBLE_GALAXY_APIKEY }} - infra_api_key: ${{ secrets.GALAXY_INFRA_KEY }} + galaxy_api_key: ${{ secrets.GALAXY_INFRA_KEY }} token: ${{ secrets.GITHUB_TOKEN }} quay_token: ${{ secrets.QUAY_TOKEN }} ...