From feed1f0364cd374ff1c8692f0edfd2a687253871 Mon Sep 17 00:00:00 2001 From: TMKnight <548588+tmknight@users.noreply.github.com> Date: Mon, 15 Jan 2024 16:49:46 -0500 Subject: [PATCH] Update git-release.yml --- .github/workflows/git-release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/git-release.yml b/.github/workflows/git-release.yml index 371b831..ae2d434 100644 --- a/.github/workflows/git-release.yml +++ b/.github/workflows/git-release.yml @@ -23,8 +23,8 @@ env: RELEASE: stable jobs: - get-tag: - name: "Get Tag From Package Version" + get-version: + name: "Get package version" runs-on: "ubuntu-latest" outputs: pkg-version: ${{ steps.pkg-version.outputs.PKG_VERSION }} @@ -34,7 +34,7 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} - - name: "Get tag" + - name: "Get version" id: "pkg-version" shell: "bash" run: | @@ -43,7 +43,7 @@ jobs: create-release: name: "Create release" if: ${{ github.event.workflow_run.conclusion == 'success' }} - needs: "get-tag" + needs: "get-version" runs-on: "ubuntu-latest" steps: - name: "Check out the repo" @@ -62,7 +62,7 @@ jobs: name: "Upload assets to Github releases" if: ${{ github.event.workflow_run.conclusion == 'success' }} needs: - - "get-tag" + - "get-version" - "create-release" strategy: matrix: @@ -95,7 +95,7 @@ jobs: name: "Publish Docker image" if: ${{ github.event.workflow_run.conclusion == 'success' }} needs: - - "get-tag" + - "get-version" - "upload-assets" runs-on: ubuntu-latest permissions: