From 8aeca70e22b10be87dcac01031e5d3ac88585c66 Mon Sep 17 00:00:00 2001 From: David Gonzalez Martin Date: Sun, 3 Nov 2024 15:21:02 -0600 Subject: [PATCH] Generate id for tag generation step --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 72cd6a8..8eab993 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: BIRTH_MACOS_IMAGE: ${{ steps.generate-config.outputs.BIRTH_LINUX_IMAGE }} BIRTH_LINUX_IMAGE: ${{ steps.generate-config.outputs.BIRTH_LINUX_IMAGE }} BIRTH_WINDOWS_IMAGE: ${{ steps.generate-config.outputs.BIRTH_WINDOWS_IMAGE }} - RELEASE_TAG_NAME: ${{ steps.generate-config.outputs.RELEASE_TAG_NAME }} # Define job output here + RELEASE_TAG_NAME: ${{ steps.generate-tag.outputs.RELEASE_TAG_NAME }} # Define job output here steps: - name: Check out repository uses: actions/checkout@v4 @@ -30,6 +30,7 @@ jobs: - name: Create tag if: github.ref == 'refs/heads/main' shell: bash + id: generate-tag run: | git config --global user.name "github-actions" git config --global user.email "github-actions@github.com"