Skip to content

Commit

Permalink
add github workflow to create Splunk app package
Browse files Browse the repository at this point in the history
  • Loading branch information
northben authored Sep 15, 2020
1 parent 467eb1a commit eb1f4f2
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Create Splunk application package

on:
push:
branches:
- master

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout master
uses: actions/checkout@v2
with:
ref: master

- name: Archive Master Release
uses: juankaram/[email protected]
with:
args: tar -czvf TA-sentinelone.spl TA-sentinelone

- name: Save Master Release
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "*.spl"
tags: false
draft: false
branches: "master"
verbose: true

0 comments on commit eb1f4f2

Please sign in to comment.