From 0a2893ec0ac8041fe763320abdfcbd8c87833b5f Mon Sep 17 00:00:00 2001 From: muzuke <92723634+muzuke@users.noreply.github.com> Date: Tue, 19 Sep 2023 16:43:32 +0300 Subject: [PATCH] ci: remove unused workflow --- .github/workflows/pypi.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/pypi.yml diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml deleted file mode 100644 index 5a944628..00000000 --- a/.github/workflows/pypi.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: PyPi - -on: - pull_request: - push: - branches: - - main - - push-pypi # NOTE: Used for debugging. It should be removed before the PR is merged. - -jobs: - publish: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Fetch secrets - uses: radixdlt/public-iac-resuable-artifacts/fetch-secrets@main - with: - role_name: ${{ secrets.PYPI_SECRET_ROLE_NAME }} - app_name: 'radix-engine-toolkit' - step_name: 'pypi-credentials' - secret_prefix: 'PYPI' - secret_name: ${{ secrets.PYPI_SECRET_NAME }} - parse_json: true - - name: Publish to pypi - run: | - echo "The secret should be available on the PYPI_USERNAME and PYPI_PASSWORD env variable" - # TODO: Use ${{ env.PYPI_USERNAME }} and ${{ env.PYPI_PASSWORD }} to reference the credentials