diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 53f06a2..8269e56 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -34,3 +34,5 @@ repos: rev: v1.7.3 hooks: - id: actionlint + # Disable because of false-positive SC2046 + args: ["-shellcheck="] diff --git a/template/.github/workflows/{% if orgname == 'scipp' %}release.yml{% endif %} b/template/.github/workflows/{% if orgname == 'scipp' %}release.yml{% endif %} index 5be908c..fe8ef23 100644 --- a/template/.github/workflows/{% if orgname == 'scipp' %}release.yml{% endif %} +++ b/template/.github/workflows/{% if orgname == 'scipp' %}release.yml{% endif %} @@ -85,7 +85,7 @@ jobs: create-args: >- anaconda-client python=3.11 - - run: anaconda --token ${{ secrets.ANACONDATOKEN }} upload --user scipp --label main "$(ls conda-package-noarch/*.tar.bz2)" + - run: anaconda --token ${{ secrets.ANACONDATOKEN }} upload --user scipp --label main $(ls conda-package-noarch/*.tar.bz2) docs: needs: [upload_conda, upload_pypi] diff --git a/template/.pre-commit-config.yaml b/template/.pre-commit-config.yaml index c090b7c..f83362c 100644 --- a/template/.pre-commit-config.yaml +++ b/template/.pre-commit-config.yaml @@ -50,3 +50,5 @@ repos: rev: v1.7.3 hooks: - id: actionlint + # Disable because of false-positive SC2046 + args: ["-shellcheck="]