Skip to content

Commit 2d451e1

Browse files
authored
Merge pull request #55 from SumoLogic/JKashyap96-patch-1
Create release for Sumologic Azure Function
2 parents 183a10d + 7b33313 commit 2d451e1

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2+
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
3+
4+
name: "tagged-release"
5+
6+
on:
7+
push:
8+
tags:
9+
- "v*"
10+
11+
jobs:
12+
tagged-release:
13+
name: "Tagged Release"
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: "marvinpinto/action-automatic-releases@latest"
17+
with:
18+
repo_token: ${{ secrets.GITHUB_TOKEN }}
19+
prerelease: false
20+
files: |
21+
BlockBlobReader/target/*
22+
EventHubs/target/logs_build/*
23+
EventHubs/target/metrics_build/*

0 commit comments

Comments
 (0)