From e1fd3efe8529ecc82c21ae48951e0c59fc93f85a Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Tue, 14 May 2024 09:36:00 -0400 Subject: [PATCH] remove owner portion from repo name --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ea4ad7d6..41919080 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,7 +45,7 @@ jobs: outputs: archive-name: ${{ steps.archive.outputs.name }} steps: - - name: "Checkout ${{ github.repository }}@${{ inputs.branch }}" + - name: "Checkout ${{ github.repository.name }}@${{ inputs.branch }}" uses: actions/checkout@v4 with: ref: ${{ needs.release-prep.outputs.release-branch }} @@ -57,10 +57,10 @@ jobs: - name: "Set archive name" id: archive run: | - archive_name=${{ github.repository }}-${{ inputs.version }}-${{ inputs.deploy-to }} + archive_name=${{ github.repository.name }}-${{ inputs.version }}-${{ inputs.deploy-to }} echo "name=$archive_name" >> $GITHUB_OUTPUT - - name: "Build ${{ github.repository }}" + - name: "Build ${{ github.repository.name }}" uses: dbt-labs/dbt-adapters/.github/actions/build-hatch@main with: archive-name: ${{ steps.archive.outputs.name }}