From fd9864a1370e47473cbc721fe44618eafe5076b0 Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Sun, 15 Aug 2021 14:20:47 +0100 Subject: [PATCH] try to use proper tag name --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ad1d9a05..90f478b6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,9 +8,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master + - name: Get the Tag + id: get_tag + run: echo ::set-output name=TAGVALUE::${GITHUB_REF#refs/tags/} - name: Netdisco Release uses: elgohr/Github-Release-Action@master env: GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} with: - args: NetdiscoRelease + args: Netdisco ${{ steps.get_tag.outputs.TAGVALUE }}