Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Update version number
if: startsWith(github.ref, 'refs/tags/')
run: sed -i -e "s/0.0.0/${GITHUB_REF##*/}/" pyproject.toml
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Check isort, black, and flake8
Expand Down Expand Up @@ -55,21 +55,21 @@ jobs:
run: poetry build
- name: Upload dist artifact
if: ${{ matrix.python-version == vars.ARCALOT_PYTHON_VERSION }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: dist
path: dist
if-no-files-found: error
- name: Upload coverage HTML artifact
if: ${{ matrix.python-version == vars.ARCALOT_PYTHON_VERSION }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: coverage
path: htmlcov
if-no-files-found: error
- name: Upload Sphinx documentation
if: ${{ matrix.python-version == vars.ARCALOT_PYTHON_VERSION }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: documentation
path: docs/build/html
Expand All @@ -82,9 +82,9 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: dist
path: dist
Expand Down
Loading