From 7a58d59d4dcb3d5138671a76c25449869475394c Mon Sep 17 00:00:00 2001 From: Thomas Lento Date: Fri, 26 Jul 2024 10:21:05 -0700 Subject: [PATCH] Remove access token reference for PyPI (#1350) We have changed authentication methods for PyPI to a more secure approach, so we no longer have to store an access token in GitHub secrets. This removes the in-code references so we can delete the secrets themselves. --- .github/workflows/cd-push-metricflow-to-pypi.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/cd-push-metricflow-to-pypi.yaml b/.github/workflows/cd-push-metricflow-to-pypi.yaml index 962009d81f..85cfde6995 100644 --- a/.github/workflows/cd-push-metricflow-to-pypi.yaml +++ b/.github/workflows/cd-push-metricflow-to-pypi.yaml @@ -25,6 +25,3 @@ jobs: - name: Hatch Publish `metricflow` run: hatch build && hatch publish - env: - HATCH_INDEX_USER: __token__ - HATCH_INDEX_AUTH: ${{ secrets.PYPI_API_TOKEN }}