Skip to content

Commit 275c7a3

Browse files
uploader docker rar as a filter
2 parents 989597b + bf2f193 commit 275c7a3

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/actions/build-libraries/action.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ runs:
5555
- name: Set up Docker Buildx
5656
uses: docker/setup-buildx-action@v3
5757

58+
- run: mkdir -p ${{ runner.temp }}/myimage
59+
shell: bash
60+
5861
- name: Build and export
5962
uses: docker/build-push-action@v6
6063
with:
@@ -63,10 +66,10 @@ runs:
6366
tags: |
6467
ghcr.io/nhsdigital/libshostdocker:latest
6568
# ghcr.io/nhsdigital/libshostdocker:${{ inputs.version }}
66-
outputs: type=docker,dest=${{ runner.temp }}/myimage.tar
69+
outputs: type=docker,dest=${{ runner.temp }}/myimage/myimage.tar
6770

6871
- name: Upload artifact
6972
uses: actions/upload-artifact@v4
7073
with:
7174
name: libs-host-docker-${{ inputs.version }}
72-
path: ${{ runner.temp }}/myimage.tar
75+
path: ${{ runner.temp }}/myimage

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ build: # Build the project artefact @Pipeline
1414
(cd server && make build)
1515
(cd sdk && make build)
1616
(cd docs && make build)
17-
(cd libs && make build)
17+
(cd src/server && make build)
1818
publish: # Publish the project artefact @Pipeline
1919
# TODO: Implement the artefact publishing step
2020

@@ -25,7 +25,7 @@ clean:: # Clean-up project resources (main) @Operations
2525
rm -f .version
2626
(cd sdk && make clean)
2727
(cd server && make clean)
28-
28+
(cd src/server && make clean)
2929
serve:
3030
npm run serve
3131

sdk/_config.version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version: 0.2.0-20250708.142731+ca74a4e
1+
version: 0.2.0-20250709.100804+10788f5

server/_config.version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version: 0.2.0-20250708.142722+ca74a4e
1+
version: 0.2.0-20250709.100758+10788f5

0 commit comments

Comments
 (0)