From 2bb71709dba922335530516b5353d2262d131646 Mon Sep 17 00:00:00 2001 From: Chris Butler Date: Tue, 7 Nov 2023 15:02:06 +1100 Subject: [PATCH] fix(cicd): ignore line endings for now (#31) Signed-off-by: Chris Butler --- .github/workflows/flit-release.yml | 2 +- .pre-commit-config.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/flit-release.yml b/.github/workflows/flit-release.yml index 1d0ee51..163b793 100644 --- a/.github/workflows/flit-release.yml +++ b/.github/workflows/flit-release.yml @@ -26,7 +26,7 @@ jobs: pip install flit>=3.9.0 - name: Build and publish run: | - flit publish --debug + flit publish env: FLIT_USERNAME: __token__ FLIT_PASSWORD: ${{ secrets.PYPI_KEY }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b84e6f0..91c4dff 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,6 +4,7 @@ repos: hooks: - id: end-of-file-fixer - id: mixed-line-ending + exclude: CHANGELOG.md - id: trailing-whitespace - id: check-yaml - id: check-toml