From 5131b3e999b02f0dbd642537891ec796a6f30efc Mon Sep 17 00:00:00 2001 From: janf Date: Tue, 28 Nov 2023 13:20:47 +0100 Subject: [PATCH] set tags to meta tags value --- .github/workflows/build_and_deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml index c67b7c1..5403e2a 100644 --- a/.github/workflows/build_and_deploy.yml +++ b/.github/workflows/build_and_deploy.yml @@ -45,12 +45,12 @@ jobs: labels: ${{ steps.meta.outputs.labels }} - name: Create release - if: ${{ github.ref != null }} + run: echo ${{ steps.meta.outputs.tags }} + if: ${{ steps.meta.outputs.tags != null }} id: create_release uses: ncipollo/release-action@v1.13.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag: ${{ github.ref }} - name: ${{ github.ref }} + tag: ${{ steps.meta.outputs.tags }} generateReleaseNotes: true