diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index d1cb1004..aea228b7 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -196,5 +196,5 @@ jobs: - name: Upload to Anaconda run: | export ANACONDA_API_TOKEN=${{ secrets.ANACONDA_TOKEN }} - find conda-packages -type f -name "*.tar.bz2" -exec echo "anaconda upload {}" \; + find conda-packages -type f -name "*.tar.bz2" -exec "anaconda upload {}" \; diff --git a/.github/workflows/della_notebooks.yml b/.github/workflows/della_notebooks.yml deleted file mode 100644 index 5002b400..00000000 --- a/.github/workflows/della_notebooks.yml +++ /dev/null @@ -1,20 +0,0 @@ -# Workflow file for test runs on Princeton's della cluster. This only runs on self -# hosted runners. The pr-check script detects that it is running on della and -# runs tests of notebooks that require larger resources than GitHub Actions hosted -# runners provide. It would probably be better to move a lot of that logic to this -# file in the future. - -on: [pull_request] - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -jobs: - notebook_tests: - runs-on: self-hosted - steps: - - uses: actions/checkout@v4 - - run: | - chmod a+x pr-check.sh - ./pr-check.sh