We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb3f0c9 commit fddd438Copy full SHA for fddd438
2 files changed
.github/workflows/main.yml
@@ -1,6 +1,10 @@
1
name: CI
2
3
-on: [push, pull_request, workflow_dispatch]
+on:
4
+ push:
5
+ pull_request:
6
+ workflow_dispatch:
7
+ workflow_call:
8
9
jobs:
10
build:
.github/workflows/python-publish.yml
@@ -8,16 +8,14 @@ jobs:
create_wheel_and_sdist:
name: create_wheel_and_sdist
uses: ./.github/workflows/main.yml
11
- with:
12
- attest-package: "true"
13
14
deploy:
15
- depends-on: create_wheel_and_sdist
+ needs: [ create_wheel_and_sdist ]
16
runs-on: ubuntu-latest
17
18
environment: pypi
19
permissions:
20
- id-token: write. # IMPORTANT: this permission is mandatory for Trusted Publishing
+ id-token: write # IMPORTANT: this permission is mandatory for Trusted Publishing
21
22
steps:
23
- uses: actions/checkout@v3
0 commit comments