Skip to content

Commit

Permalink
remove owner portion from repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed May 14, 2024
1 parent 0530d96 commit e1fd3ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down

0 comments on commit e1fd3ef

Please sign in to comment.