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
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:
- name: Check package
run: pixi run -e build check-wheel
- name: Upload package
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: pip
path: dist/*
- name: Upload bundle
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: cdn
path: src/panel_splitjs/dist/
Expand All @@ -44,7 +44,7 @@ jobs:
id-token: write
environment: pypi
steps:
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: pip
path: dist/
Expand All @@ -56,15 +56,15 @@ jobs:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: cdn
path: dist/
- name: Get Tag Name
id: get_tag
run: echo "TAG_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v5
uses: aws-actions/configure-aws-credentials@v6
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ jobs:
echo "[run]\nconcurrency = greenlet" > .uicoveragerc
pixi run -e ${{ matrix.environment }} test-ui $COV --cov-config=.uicoveragerc $FAIL
- name: Upload UI Screenshots
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: always()
with:
name: ui_screenshots_${{ runner.os }}
Expand Down