From fef9761ac12fc7902d1c59582866818ce19e970c Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Tue, 17 Aug 2021 15:43:08 +0100 Subject: [PATCH] fix release name --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7c1115a5..8eb4c941 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,8 +9,13 @@ jobs: 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 uses: softprops/action-gh-release@v1 + with: + name: Netdisco ${{ steps.get_tag.outputs.TAGVALUE }} #jobs: # build: # runs-on: ubuntu-latest