From 017682febcb8f598615111947bc468f71f4d4ccd Mon Sep 17 00:00:00 2001 From: Julius Busecke Date: Tue, 2 Apr 2024 15:05:49 -0400 Subject: [PATCH] Still working on the damn release action I wish there would be a way to dry run these locally. This is annoying --- .github/workflows/pythonpublish.yaml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/pythonpublish.yaml b/.github/workflows/pythonpublish.yaml index 3479cbe..6be698e 100644 --- a/.github/workflows/pythonpublish.yaml +++ b/.github/workflows/pythonpublish.yaml @@ -15,18 +15,11 @@ jobs: - uses: actions/setup-python@v4 name: Install Python with: - python-version: 3.9 + python-version: '3.x' - name: Install dependencies run: | python -m pip install --upgrade pip python -m pip install setuptools setuptools-scm[toml] wheel twine - python -m pip install . - - name: Check python version - run: | - python --version - - name: Check current package version - run: | - python -c "import pangeo_forge_esgf; print(pangeo_forge_esgf.__version__)" - name: Build and publish env: TWINE_USERNAME: "__token__"