We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 792b262 commit a1e5ae3Copy full SHA for a1e5ae3
.github/workflows/main.yml
@@ -0,0 +1,20 @@
1
+run-appinspect-api:
2
+ needs: build
3
+ runs-on: ubuntu-latest
4
+ steps:
5
+ - uses: actions/checkout@v3
6
+ - uses: actions/download-artifact@v4
7
+ with:
8
+ name: my-package
9
+ path: app-dir/
10
+ - name: appinspect-api
11
+ uses: splunk/appinspect-api-action@v3.0
12
13
+ username: ${{ secrets.SPL_COM_USER }}
14
+ password: ${{ secrets.SPL_COM_PASSWORD }}
15
+ app_path: app-dir/
16
+ - uses: actions/upload-artifact@v4
17
+ if: always()
18
19
+ name: appinspect-api-html-report
20
+ path: AppInspect_response.html
0 commit comments