From b5d88076a8b25bd72955292ed5d7b2576142a712 Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Wed, 18 Aug 2021 08:33:45 +0100 Subject: [PATCH] add release for SNMP::Info why not --- .github/workflows/release.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000..4cf7e8e1 --- /dev/null +++ b/.github/workflows/release.yml @@ -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 }}