Skip to content

Commit 9831dd6

Browse files
committed
ci: report how to install what this run built
1 parent 8d233e9 commit 9831dd6

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/ci.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
required: false
1111
type: string
1212
default: main
13+
outputs:
14+
artifact:
15+
description: Download URL for the built distributions.
16+
value: ${{ jobs.build.outputs.artifact }}
1317

1418
name: CI
1519

@@ -39,6 +43,8 @@ jobs:
3943
build:
4044
needs: generate
4145
runs-on: ubuntu-latest
46+
outputs:
47+
artifact: ${{ steps.upload.outputs.artifact-url }}
4248
steps:
4349
- uses: actions/download-artifact@v8
4450
with:
@@ -53,7 +59,8 @@ jobs:
5359

5460
- run: python -m build
5561

56-
- uses: actions/upload-artifact@v7
62+
- id: upload
63+
uses: actions/upload-artifact@v7
5764
with:
5865
name: dist-python
5966
path: dist

0 commit comments

Comments
 (0)