Skip to content

Commit

Permalink
Bump CI download/upload dependencies (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
markaren authored Sep 5, 2024
1 parent 1db97ad commit e12ac47
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ jobs:
cd ..
- name: Archive wrapper library
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: lib-wrapper
name: lib-wrapper-${{ matrix.os }}
path: pythonfmu/resources

build-python:
Expand All @@ -62,9 +62,9 @@ jobs:
architecture: 'x64'

- name: Download wrappers
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: lib-wrapper
pattern: lib-wrapper-*
path: pythonfmu/resources

- name: Build distribution artifacts
Expand All @@ -73,7 +73,7 @@ jobs:
python setup.py sdist bdist_wheel
- name: Archive production artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-wheel
path: dist
Expand All @@ -98,7 +98,7 @@ jobs:
architecture: 'x64'

- name: Download python package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-wheel

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
cmake --build .
cd ..
- name: Archive wrapper library
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: lib-wrapper
name: lib-wrapper-${{ matrix.os }}
path: pythonfmu/resources

deploy:
Expand All @@ -51,9 +51,9 @@ jobs:
with:
python-version: '3.x'
- name: Download wrappers
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: lib-wrapper
pattern: lib-wrapper-*
path: pythonfmu/resources
- name: Install dependencies
run: |
Expand Down

0 comments on commit e12ac47

Please sign in to comment.