fix: disable the actuated mirror on the x86 docker builder (#2443)

This commit is contained in:
Ellie Huxtable 2024-11-09 11:17:50 -08:00 committed by GitHub
parent d9f43a3a7b
commit 6ab61e48d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,7 +5,6 @@ on:
branches: [main]
jobs:
publish_x86:
concurrency:
group: ${{ github.ref }}-x86
@ -20,9 +19,6 @@ jobs:
repository: atuinsh/atuin
path: "./"
- name: Setup mirror
uses: self-actuated/hub-mirror@master
- name: Get Repo Owner
id: get_repo_owner
run: echo "REPO_OWNER=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')" > $GITHUB_ENV
@ -55,7 +51,6 @@ jobs:
tags: |
ghcr.io/${{ env.REPO_OWNER }}/atuin:${{ steps.shortsha.outputs.short_sha }}-amd64
publish_aarch64:
concurrency:
group: ${{ github.ref }}-aarch64
@ -139,4 +134,3 @@ jobs:
docker manifest inspect ghcr.io/${{ env.REPO_OWNER }}/atuin:${{ steps.shortsha.outputs.short_sha }}
docker manifest push ghcr.io/${{ env.REPO_OWNER }}/atuin:${{ steps.shortsha.outputs.short_sha }}