Skip to content

Commit

Permalink
fix repository name reference
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed May 14, 2024
1 parent 9cde4cf commit 3291829
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 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.name }}@${{ inputs.branch }}"
- name: "Checkout ${{ github.event.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.name }}-${{ inputs.version }}-${{ inputs.deploy-to }}
archive_name=${{ github.event.repository.name }}-${{ inputs.version }}-${{ inputs.deploy-to }}
echo "name=$archive_name" >> $GITHUB_OUTPUT
- name: "Build ${{ github.repository.name }}"
- name: "Build ${{ github.event.repository.name }}"
uses: dbt-labs/dbt-adapters/.github/actions/build-hatch@main
with:
archive-name: ${{ steps.archive.outputs.name }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/release_prep_hatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
echo Python version: ${{ env.PYTHON_TARGET_VERSION }}
echo Notification prefix: ${{ env.NOTIFICATION_PREFIX }}
- name: "Checkout ${{ github.repository }}@${{ inputs.branch }}"
- name: "Checkout ${{ github.event.repository.name }}@${{ inputs.branch }}"
uses: actions/checkout@v4
with:
ref: ${{ inputs.branch }}
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
name: ${{ steps.release-branch.outputs.name }}

steps:
- name: "Checkout ${{ github.repository }}@${{ inputs.branch }}"
- name: "Checkout ${{ github.event.repository.name }}@${{ inputs.branch }}"
uses: actions/checkout@v4
with:
ref: ${{ inputs.branch }}
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
- core-team

steps:
- name: "Checkout ${{ github.repository }}@${{ needs.release-branch.outputs.name }}"
- name: "Checkout ${{ github.event.repository.name }}@${{ needs.release-branch.outputs.name }}"
uses: actions/checkout@v3
with:
ref: ${{ needs.release-branch.outputs.name }}
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:
- generate-changelog

steps:
- name: "Checkout ${{ github.repository }}@${{ needs.release-branch.outputs.name }}"
- name: "Checkout ${{ github.event.repository.name }}@${{ needs.release-branch.outputs.name }}"
uses: actions/checkout@v3
with:
ref: ${{ needs.release-branch.outputs.name }}
Expand Down Expand Up @@ -331,7 +331,7 @@ jobs:
- bump-version

steps:
- name: "Checkout ${{ github.repository }}@${{ needs.release-branch.outputs.name }}"
- name: "Checkout ${{ github.event.repository.name }}@${{ needs.release-branch.outputs.name }}"
uses: actions/checkout@v4
with:
ref: ${{ needs.release-branch.outputs.name }}
Expand Down Expand Up @@ -367,7 +367,7 @@ jobs:
- 5432:5432

steps:
- name: "Checkout ${{ github.repository }}@${{ needs.release-branch.outputs.name }}"
- name: "Checkout ${{ github.event.repository.name }}@${{ needs.release-branch.outputs.name }}"
uses: actions/checkout@v4
with:
ref: ${{ needs.release-branch.outputs.name }}
Expand Down Expand Up @@ -407,7 +407,7 @@ jobs:
inputs.deploy-to == 'prod'
steps:
- name: "Checkout ${{ github.repository }}"
- name: "Checkout ${{ github.event.repository.name }}"
uses: actions/checkout@v3

- name: "Merge changes into ${{ inputs.branch }}"
Expand Down Expand Up @@ -452,7 +452,7 @@ jobs:
fi
echo "name=$branch" >> $GITHUB_OUTPUT
- name: "Checkout ${{ github.repository }}@${{ steps.branch.outputs.name }}"
- name: "Checkout ${{ github.event.repository.name }}@${{ steps.branch.outputs.name }}"
uses: actions/checkout@v3
with:
ref: ${{ steps.branch.outputs.name }}
Expand Down

0 comments on commit 3291829

Please sign in to comment.