Skip to content

Commit

Permalink
Created tagged workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dd-Splunk committed Dec 1, 2021
1 parent 93a3d3f commit fdb59ec
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/tagged.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: "tagged-release"

on:
push:
tags:
- "v*"

jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"

steps:
# ...
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: echo ${{ github.sha }} > Release.txt
- name: Test
run: cat Release.txt
- name: Create spl
run: |
cd apps
tar -cvzf ../geomaps.spl geomaps/*
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
Release.txt
geomaps.spl

0 comments on commit fdb59ec

Please sign in to comment.