Skip to content

Commit 72a828a

Browse files
test
1 parent 1e45625 commit 72a828a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/actions/build/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,21 +151,21 @@ runs:
151151
echo "${{ inputs.ucc_modinput_functional }}"
152152
153153
- name: Artifact OpenAPI
154-
if: ${{ inputs.python_version }} == '3.7' && ${{ !cancelled() && inputs.ucc_modinput_functional == 'true' && inputs.modinput_functional == 'true' }}
154+
if: inputs.python_version == '3.7' && !cancelled() && inputs.ucc_modinput_functional == 'true' && inputs.modinput_functional == 'true'
155155
uses: actions/upload-artifact@v3
156156
with:
157157
name: artifact-openapi
158158
path: ${{ github.workspace }}/${{ steps.uccgen.outputs.OUTPUT }}/static/openapi.json
159159

160160
- name: Artifact Splunkbase
161-
if: ${{ !cancelled() }} && ${{ inputs.python_version }} == '3.7'
161+
if: ${{ !cancelled() }} && inputs.python_version == '3.7'
162162
uses: actions/upload-artifact@v3
163163
with:
164164
name: package-splunkbase
165165
path: ${{ steps.slim.outputs.OUTPUT }}
166166

167167
- name: Upload build to S3
168-
if: ${{ inputs.python_version }} == '3.7'
168+
if: inputs.python_version == '3.7'
169169
id: buildupload
170170
shell: bash
171171
env:
@@ -178,7 +178,7 @@ runs:
178178
aws s3 cp "${{ steps.slim.outputs.OUTPUT }}" s3://ta-production-artifacts/ta-apps/
179179
180180
- name: Artifact Splunk parts
181-
if: ${{ !cancelled() }} && ${{ inputs.python_version }} == '3.7'
181+
if: ${{ !cancelled() }} && inputs.python_version == '3.7'
182182
uses: actions/upload-artifact@v3
183183
with:
184184
name: package-deployment

0 commit comments

Comments
 (0)