From 9a1c4e741c8e5d1819c8b5015a41e958fe0141ad Mon Sep 17 00:00:00 2001 From: ajenkins Date: Wed, 7 Feb 2024 16:55:11 +0100 Subject: [PATCH] Removed publish all --- .github/workflows/_publish_all.yml | 126 ----------------------------- 1 file changed, 126 deletions(-) delete mode 100644 .github/workflows/_publish_all.yml diff --git a/.github/workflows/_publish_all.yml b/.github/workflows/_publish_all.yml deleted file mode 100644 index bd38ffa8..00000000 --- a/.github/workflows/_publish_all.yml +++ /dev/null @@ -1,126 +0,0 @@ -name: (abstract) - Publish All - -on: - workflow_call: - inputs: - dry_run: - required: false - type: boolean - secrets: - PYPI_API_KEY: - required: true - -jobs: - validate-all: - name: Validate all modules - uses: ./.github/workflows/validate-all.yml - - publish-audit-api: - name: Publish Audit API - needs: - - validate-all - uses: ./.github/workflows/_publish.yml - secrets: - PYPI_API_KEY: ${{ secrets.PYPI_API_KEY }} - with: - dry_run: ${{ inputs.dry_run }} - package_to_publish: pnap_audit_api - - publish-bmc-api: - name: Publish BMC API - needs: - - validate-all - uses: ./.github/workflows/_publish.yml - secrets: - PYPI_API_KEY: ${{ secrets.PYPI_API_KEY }} - with: - dry_run: ${{ inputs.dry_run }} - package_to_publish: pnap_bmc_api - - publish-ip-api: - name: Publish IP API - needs: - - validate-all - uses: ./.github/workflows/_publish.yml - secrets: - PYPI_API_KEY: ${{ secrets.PYPI_API_KEY }} - with: - dry_run: ${{ inputs.dry_run }} - package_to_publish: pnap_ip_api - - publish-network-api: - name: Publish Network API - needs: - - validate-all - uses: ./.github/workflows/_publish.yml - secrets: - PYPI_API_KEY: ${{ secrets.PYPI_API_KEY }} - with: - dry_run: ${{ inputs.dry_run }} - package_to_publish: pnap_network_api - - publish-network-storage-api: - name: Publish Network Storage API - needs: - - validate-all - uses: ./.github/workflows/_publish.yml - secrets: - PYPI_API_KEY: ${{ secrets.PYPI_API_KEY }} - with: - dry_run: ${{ inputs.dry_run }} - package_to_publish: pnap_network_storage_api - - publish-rancher-solution-api: - name: Publish Rancher Solution API - needs: - - validate-all - uses: ./.github/workflows/_publish.yml - secrets: - PYPI_API_KEY: ${{ secrets.PYPI_API_KEY }} - with: - dry_run: ${{ inputs.dry_run }} - package_to_publish: pnap_rancher_solution_api - - publish-tag-api: - name: Publish Tag API - needs: - - validate-all - uses: ./.github/workflows/_publish.yml - secrets: - PYPI_API_KEY: ${{ secrets.PYPI_API_KEY }} - with: - dry_run: ${{ inputs.dry_run }} - package_to_publish: pnap_tag_api - - publish-location-api: - name: Publish Location API - needs: - - validate-all - uses: ./.github/workflows/_publish.yml - secrets: - PYPI_API_KEY: ${{ secrets.PYPI_API_KEY }} - with: - dry_run: ${{ inputs.dry_run }} - package_to_publish: pnap_location_api - - publish-payments-api: - name: Publish Payments API - needs: - - validate-all - uses: ./.github/workflows/_publish.yml - secrets: - PYPI_API_KEY: ${{ secrets.PYPI_API_KEY }} - with: - dry_run: ${{ inputs.dry_run }} - package_to_publish: pnap_payments_api - - publish-invoicing-api: - name: Publish Invoicing API - needs: - - validate-all - uses: ./.github/workflows/_publish.yml - secrets: - PYPI_API_KEY: ${{ secrets.PYPI_API_KEY }} - with: - dry_run: ${{ inputs.dry_run }} - package_to_publish: pnap_invoicing_api \ No newline at end of file