Skip to content

Commit 4830930

Browse files
Fix: Ensure artefact path is handled correctly (#938)
Signed-off-by: Matthew Watkins <[email protected]>
1 parent b9ab2ab commit 4830930

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/build-test-release.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,14 @@ jobs:
302302
with:
303303
egress-policy: audit
304304

305-
# Note: does not need a checkout step
305+
# Note: no need for a checkout step in this job
306+
307+
- name: '⬇ Download build artefacts'
308+
# yamllint disable-line rule:line-length
309+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
310+
with:
311+
name: "${{ needs.python-build.outputs.artefact_name }}"
312+
path: "${{ needs.python-build.outputs.artefact_path }}"
306313

307314
- name: 'Attach build artefacts to release'
308315
# yamllint disable-line rule:line-length

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[project]
55
name = "osc-github-devops"
6-
version = "0.1.34"
6+
version = "0.1.35"
77
# Uncomment to enable dynamic versioning
88
# dynamic = [ "version" ]
99
description = "Template Python project"

0 commit comments

Comments
 (0)