Skip to content
Open
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
18 changes: 9 additions & 9 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Build installer
run: pixi run build-installer
- name: Upload installer
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: installer-${{ matrix.target_arch }}
path: DIRACOS-*.sh
Expand All @@ -52,7 +52,7 @@ jobs:
target_arch: ["linux-64"]
steps:
- name: Download installer
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: installer-${{ matrix.target_arch }}
- name: Generate environment.yaml
Expand All @@ -61,7 +61,7 @@ jobs:
source diracos/diracosrc
conda env export --file environment.yaml --prefix $DIRACOS
- name: Upload environment.yaml
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: environment-yaml-${{ matrix.target_arch }}
path: |
Expand All @@ -79,7 +79,7 @@ jobs:
cache: true
environments: release
- name: Download artifacts
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
path: artifacts
- name: Create release notes
Expand All @@ -90,7 +90,7 @@ jobs:
> release-notes.md
cat release-notes.md
- name: Upload release-notes.md
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: release-notes
path: |
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Download installer
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: ${{ matrix.installer }}
- name: Run tests
Expand All @@ -141,7 +141,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Download installer
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: installer-osx-64
- name: Run tests
Expand All @@ -163,7 +163,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Download installer
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: installer-osx-arm64
- name: Run tests
Expand All @@ -190,7 +190,7 @@ jobs:
with:
python-version: '3.14'
- name: Download installer
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: installer-linux-64
- name: Prepare environment
Expand Down
Loading