diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index 070f6ee..2c22f0f 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -24,12 +24,12 @@ jobs: run: | cargo install cargo-get echo "TAG=v`cargo get package.version`" >> $GITHUB_ENV - echo "tag name $TAG" + echo "tag name ${{ env.TAG }}" - name: Create tag uses: rickstaa/action-create-tag@v1 with: - tag: $TAG + tag: ${{ env.TAG }} tag_exists_error: true message: "Latest release"