From ab7c5918b418428ed17dbe564e0d8402bd7d743d Mon Sep 17 00:00:00 2001 From: Paul Wankadia Date: Fri, 2 Feb 2024 20:15:57 +0000 Subject: [PATCH] Address a warning from `pypa/gh-action-pypi-publish`. "Input 'packages_dir' has been deprecated with message: The inputs have been normalized to use kebab-case. Use `packages-dir` instead." Change-Id: If85ae0436cf634c4c38171d6069913694b1da735 Reviewed-on: https://code-review.googlesource.com/c/re2/+/62650 Reviewed-by: Paul Wankadia Reviewed-by: Alex Chernyakhovsky --- .github/workflows/python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 226e6cc4b..c69081bda 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -221,4 +221,4 @@ jobs: uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.PYPI_API_TOKEN }} - packages_dir: python/dist + packages-dir: python/dist