Skip to content

Commit a1e5ae3

Browse files
Create main.yml
1 parent 792b262 commit a1e5ae3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/main.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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+
with:
19+
name: appinspect-api-html-report
20+
path: AppInspect_response.html

0 commit comments

Comments
 (0)