Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- shell: bash
id: info
run: |
name="ghcr.io/home-assistant/wheels/${{ matrix.arch }}/${{ matrix.tag }}/${{ matrix.abi }}"
name="ghcr.io/${{ github.repository }}/${{ matrix.arch }}/${{ matrix.tag }}/${{ matrix.abi }}"

version=$(echo "${{ github.ref }}" | awk -F"/" '{print $NF}' )
if [ "${version}" = "master" ]; then
Expand Down
4 changes: 3 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,11 @@ runs:
- shell: bash
id: pull
run: |
name="ghcr.io/home-assistant/wheels/${{ inputs.arch }}/${{ inputs.tag }}/${{ inputs.abi }}:${{ steps.version.outputs.version }}"
name="ghcr.io/$ACTION_REPOSITORY/${{ inputs.arch }}/${{ inputs.tag }}/${{ inputs.abi }}:${{ steps.version.outputs.version }}"
docker pull "$name"
echo "name=$name" >> $GITHUB_OUTPUT
env:
ACTION_REPOSITORY: ${{ github.action_repository || github.repository }}

- shell: bash
id: options
Expand Down
Loading