We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d81682 commit 2ec845cCopy full SHA for 2ec845c
.github/workflows/release.yml
@@ -12,12 +12,14 @@ on:
12
- publishAndBuild
13
required: true
14
description: if buildSiteOnly, then only builds site. If publishAndBuild is selected, then publish to TestPyPi and Build.
15
+ environment:
16
+ type: environment
17
release:
18
types: [published]
19
20
jobs:
21
publish:
- if: ${{ github.event.inputs.control == 'publishAndBuild'}}
22
+ if: github.event_name != 'workflow_dispatch' || ${{ github.event.inputs.control == 'publishAndBuild'}}
23
runs-on: ubuntu-latest
24
environment:
25
name: testpypi
0 commit comments