diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index beada73c..c5034298 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -9,10 +9,6 @@ jobs: permissions: contents: write steps: - - name: Set variables - id: vars - run: echo ::set-output name=tag::${GITHUB_REF##*/} - - name: Checkout repository uses: actions/checkout@v2 @@ -29,8 +25,11 @@ jobs: - name: Install make run: sudo apt install make + - uses: little-core-labs/get-git-tag@v3.0.1 + id: tagName + - name: Build Sources - run: VERSION="${{ steps.vars.output.tag }}" make + run: VERSION="${{ steps.tagName.outputs.tag }}" make - name: Publish new release uses: ncipollo/release-action@v1