From 1e89cce6bace354add6f6acb79f779d63b96900d Mon Sep 17 00:00:00 2001 From: Juansecu Date: Fri, 11 Aug 2023 19:40:39 -0500 Subject: [PATCH] CD - Fix retieval references of the tag name --- .github/workflows/deliver-application.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deliver-application.yml b/.github/workflows/deliver-application.yml index 5aa2492..c799d88 100644 --- a/.github/workflows/deliver-application.yml +++ b/.github/workflows/deliver-application.yml @@ -23,7 +23,7 @@ jobs: - name: Release artifact uses: softprops/action-gh-release@v1 with: - body: Version ${{ github.ref }} of the OpenFusion OpenAPI Plugin. + body: Version ${{ github.ref_name }} of the OpenFusion OpenAPI Plugin. body_path: ./CHANGELOG.md files: | target/openfusion-openapi-plugin-*.jar @@ -50,4 +50,4 @@ jobs: context: . file: ./Dockerfile push: true - tags: ${{ matrix.docker-repository }}:${{ github.ref }},${{ matrix.docker-repository }}:latest + tags: ${{ matrix.docker-repository }}:${{ github.ref_name }},${{ matrix.docker-repository }}:latest