Skip to content

Commit

Permalink
update scripts/ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bitner committed Oct 29, 2024
1 parent 61b468c commit 10b4d6b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/civ2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
target: pgstac
file: docker/pgstac/Dockerfile
tags: ${{ steps.meta.outputs.tags }}
push: true
push: false
cache-from: type=gha
cache-to: type=gha, mode=max

Expand All @@ -83,7 +83,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.target }}
path: /home/runner/work/pgstac/pgstac/dist/*
if-no-files-found: error

Expand All @@ -108,7 +108,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: win-wheels
name: win-wheels-${{ matrix.target }}
path: /home/runner/work/pgstac/pgstac/dist/*
if-no-files-found: error

Expand All @@ -127,13 +127,13 @@ jobs:
with:
working-directory: src/pypgstac
target: ${{ matrix.target }}
args: --release --out /home/runner/work/pgstac/pgstac/dist
args: --release --out /tmp/dist
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: mac-wheels
path: /home/runner/work/pgstac/pgstac/dist/*
name: mac-wheels-${{ matrix.target }}
path: /tmp/dist/*
if-no-files-found: error

sdist:
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
- name: Get Wheel
uses: actions/download-artifact@v4
with:
name: wheels
name: wheels-x86_64
path: /tmp/wheels
- name: Install pypgstac
working-directory: /__w/pgstac/pgstac/src/pypgstac
Expand Down

0 comments on commit 10b4d6b

Please sign in to comment.