From 06f676e5104ced240698130725edb296015c55aa Mon Sep 17 00:00:00 2001 From: kchason Date: Tue, 27 Aug 2024 09:30:03 -0400 Subject: [PATCH] Suffix upload to avoid conflict --- .github/workflows/cicd.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 8fdb7ce..8d6a5bc 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -43,20 +43,25 @@ jobs: steps: - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 with: distribution: 'temurin' java-version: '11' + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + - name: Pre-commit Checks run: | pip -q install pre-commit pre-commit run --all-files + - name: Start from clean state run: make clean + - name: Run tests run: make PYTHON3=python check @@ -75,7 +80,7 @@ jobs: - name: Upload HTML Docs uses: actions/upload-artifact@v4 with: - name: packages + name: packages-${{ matrix.python-version }} path: ./dist/ # If this commit is the result of a Git tag, push the wheel and tar packages