From 8a361d5a62766c7c8ec5f8ea90a4c49749957ee3 Mon Sep 17 00:00:00 2001 From: Oliver Beckstein Date: Thu, 19 Sep 2024 10:41:51 -0700 Subject: [PATCH] minimal updates to deploy workflow towards #410 (although a full rewrite is probably the real solution) --- .github/workflows/deploy.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 7f5781bc..7f8b3b64 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -29,12 +29,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: setup_miniconda - uses: conda-incubator/setup-miniconda@v2 + uses: conda-incubator/setup-miniconda@v3 with: python-version: "3.10" auto-update-conda: true @@ -55,7 +55,7 @@ jobs: uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.TEST_PYPI_API_TOKEN }} - repository_url: https://test.pypi.org/legacy/ + repository-url: https://test.pypi.org/legacy/ - name: publish_pypi if: github.event_name == 'release' && github.event.action == 'published'