We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1300004 commit 256f95eCopy full SHA for 256f95e
1 file changed
.github/workflows/_publish.yml
@@ -1,11 +1,7 @@
1
name: (internal) - Publish
2
3
on:
4
- workflow_call:
5
- inputs:
6
- package-name:
7
- required: true
8
- type: string
+ workflow_call:
9
secrets:
10
PYPI_API_KEY:
11
required: true
@@ -15,7 +11,7 @@ jobs:
15
name: Check Release
16
12
runs-on: ubuntu-18.04
17
13
outputs:
18
- module: ${{ inputs.package-name }}
14
+ package: ${{ steps.step1.outputs.package }}
19
steps:
20
- uses: actions/checkout@v3
21
with:
@@ -38,7 +34,7 @@ jobs:
38
34
39
35
publish-python-gems:
40
36
name: Publish to Python Package Index
41
- if: needs.check-release.outputs.module != 0
37
+ if: needs.check-release.outputs.package != 0
42
43
needs: check-release
44
0 commit comments