create tgz #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# DO NOT EDIT - Update techservicesillinois/splunk-soar-template first | |
name: create tgz | |
on: | |
workflow_dispatch: | |
jobs: | |
create_tgz: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Virtual Env | |
run: | | |
make venv | |
- name: Build Package (Prod) | |
run: | | |
make build | |
- name: Store build as an artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: SOAR TeamDynamix App | |
path: app.tar | |
retention-days: 90 |