add release for SNMP::Info why not

This commit is contained in:
Oliver Gorwits
2021-08-18 08:33:45 +01:00
parent 56ceb86f97
commit b5d88076a8

19
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: GitHub Release on Tag
on:
push:
tags:
- '2.[0-9][0-9][0-9][0-9][0-9][0-9]'
jobs:
release_snmp_info:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Get the Tag
id: get_tag
run: echo ::set-output name=TAGVALUE::${GITHUB_REF#refs/tags/}
- name: Release
id: create_release
uses: softprops/action-gh-release@v1
with:
name: SNMP::Info ${{ steps.get_tag.outputs.TAGVALUE }}