We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70e2539 commit 32f9ffcCopy full SHA for 32f9ffc
1 file changed
.github/workflows/publish.yml
@@ -0,0 +1,27 @@
1
+name: Publish
2
+on:
3
+ workflow_run:
4
+ workflows: ["Unit Tests"]
5
+ types: [completed]
6
+
7
+jobs:
8
+ on-success:
9
+ runs-on: ubuntu-latest
10
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
11
+ timeout-minutes: 10
12
13
+ steps:
14
+ - name: Check out repo
15
+ uses: actions/checkout@v2
16
17
+ - name: Install uv
18
+ uses: astral-sh/setup-uv@v7
19
20
+ - name: Build
21
+ uses: uv build
22
23
+ on-failure:
24
25
+ if: ${{ github.event.workflow_run.conclusion == 'failure' }}
26
27
+ - run: echo "First workflow was a failure"
0 commit comments