From ac40a0a6b519e7c0f862db3702e3031d2f5b979e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Tue, 20 May 2025 16:05:16 -0700 Subject: [PATCH 1/3] BUG: fixing bash test command --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index 574c2b6..63b7714 100755 --- a/test.sh +++ b/test.sh @@ -31,7 +31,7 @@ pytest --nbval-lax -vv --suppress-no-test-exit-code --durations=10 _exitval="$?" -if [ $_exitval > 0 ]; then +if [[ $_exitval > 0 ]]; then exit $_exitval fi From 36c48334e51ae3a0a2279ee60be78a41fd901c24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Tue, 20 May 2025 16:07:38 -0700 Subject: [PATCH 2/3] CI: updating action's version --- .github/workflows/circleci-artifacts-redirector.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/circleci-artifacts-redirector.yml b/.github/workflows/circleci-artifacts-redirector.yml index e94dc7c..b9fc621 100644 --- a/.github/workflows/circleci-artifacts-redirector.yml +++ b/.github/workflows/circleci-artifacts-redirector.yml @@ -10,7 +10,7 @@ jobs: name: Run CircleCI artifacts redirector steps: - name: GitHub Action step - uses: scientific-python/circleci-artifacts-redirector-action@4e13a10d89177f4bfc8007a7064bdbeda848d8d1 # v1.0.0 + uses: scientific-python/circleci-artifacts-redirector-action@7eafdb60666f57706a5525a2f5eb76224dc8779b # v1.1.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} api-token: ${{ secrets.CIRCLE_TOKEN }} From 315a6dc1de419cb81a9b48e4a2ab0f70c2464e91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Tue, 20 May 2025 16:09:55 -0700 Subject: [PATCH 3/3] CI: something is wrong with the conditional, remove it for now --- .github/workflows/circleci-artifacts-redirector.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/circleci-artifacts-redirector.yml b/.github/workflows/circleci-artifacts-redirector.yml index b9fc621..2d0ae8a 100644 --- a/.github/workflows/circleci-artifacts-redirector.yml +++ b/.github/workflows/circleci-artifacts-redirector.yml @@ -4,7 +4,6 @@ on: [status] jobs: circleci_artifacts_redirector_job: runs-on: ubuntu-latest - if: "${{ github.event.context == 'ci/circleci: build-doc' }}" permissions: statuses: write name: Run CircleCI artifacts redirector