Skip to content

Commit d88c541

Browse files
committed
~;:_:;~
1 parent ba8d375 commit d88c541

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-z3fdb-web-service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
- name: Assemble staging
136136
run: |
137137
mkdir -p stage
138-
cp *.whl fdb.tar.zst stage
138+
cp *.whl fdb.tar.zst fdb-build/*.whl stage
139139
- name: Upload stage archive
140140
uses: actions/upload-artifact@v4
141141
with:

containerfiles/z3fdb_web_service/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ RUN apt-get update \
2323
&& rm -rf /var/tmp/*
2424

2525
# Expect the context to be set to a build path after CPACK ran
26-
COPY ["fdb-*.tar.zst", "z3fdb*.whl", "/tmp/"]
26+
COPY ["fdb*.tar.zst", "z3fdb*.whl", "/tmp/"]
2727

2828
RUN mkdir -p /opt/venv \
2929
&& python3 -m venv /opt/venv \
3030
&& . /opt/venv/bin/activate \
3131
&& pip install --no-cache-dir "zarr>=3,<4" numpy pytest pytest-asyncio eccodes pyfdb build setuptools $(ls /tmp/z3fdb*.whl)
3232

3333
RUN mkdir -p /opt/ecmwf \
34-
&& tar xvf $(ls /tmp/fdb-*.tar.zst) -C /opt/ecmwf/ \
34+
&& tar xvf $(ls /tmp/fdb*.tar.zst) -C /opt/ecmwf/ \
3535
&& cd /opt/ecmwf/ \
3636
&& ln -s $(ls /opt/ecmwf | grep fdb) fdb
3737

0 commit comments

Comments
 (0)