This is an automated email from the ASF dual-hosted git repository.

jedcunningham pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new f35b41e753 Set proper extension for sdist files (#27414)
f35b41e753 is described below

commit f35b41e7533b09052dfcc591ec25c58207f1518c
Author: Jarek Potiuk <[email protected]>
AuthorDate: Mon Oct 31 17:50:05 2022 +0100

    Set proper extension for sdist files (#27414)
    
    The `sdist` packages have .tar.gz extension but in a few places
    we used .tgz. This now should be fixed
---
 .github/workflows/ci.yml | 2 +-
 dev/refresh_images.sh    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index fcb56d0931..3a95313287 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -705,7 +705,7 @@ ${{ hashFiles('.pre-commit-config.yaml') }}"
         run: pipx install twine && twine check dist/*.whl
         if: matrix.package-format == 'wheel'
       - name: "Verify sdist packages with twine"
-        run: pipx install twine && twine check dist/*.tgz
+        run: pipx install twine && twine check dist/*.tar.gz
         if: matrix.package-format == 'sdist'
       - name: "Install and test provider packages and airflow via 
${{matrix.package-format}} files"
         run: breeze release-management verify-provider-packages 
--use-packages-from-dist
diff --git a/dev/refresh_images.sh b/dev/refresh_images.sh
index 1885d31988..594db2cc36 100755
--- a/dev/refresh_images.sh
+++ b/dev/refresh_images.sh
@@ -18,7 +18,7 @@
 
 set -euo pipefail
 rm -rf docker-context-files/*.whl
-rm -rf docker-context-files/*.tgz
+rm -rf docker-context-files/*.tar.gz
 export ANSWER="yes"
 export CI="true"
 export GITHUB_TOKEN=""

Reply via email to