diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 9e68cc3..3bfd0f4 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -12,8 +12,7 @@ jobs: matrix: config: - {arch: 'arm64'} - - {arch: 'amd64'} - runs-on: ${{ matrix.config.arch == 'arm64' && 'ubuntu-arm64' || 'ubuntu-amd64' }} + runs-on: ubuntu-arm64 steps: - name: Checkout uses: actions/checkout@v4 @@ -59,13 +58,13 @@ jobs: - name: Create and push manifest images for pinned uses: Noelware/docker-manifest-action@v1 with: - inputs: ${{ env.DOCKERHUB_REPO }}:${{ env.VERSION }}-arm64,${{ env.DOCKERHUB_REPO }}:${{ env.VERSION }}-amd64 + inputs: ${{ env.DOCKERHUB_REPO }}:${{ env.VERSION }}-arm64 tags: ${{ env.DOCKERHUB_REPO }}:${{ env.VERSION }} push: true - name: Create and push manifest images for latest uses: Noelware/docker-manifest-action@v1 with: - inputs: ${{ env.DOCKERHUB_REPO }}:latest-arm64,${{ env.DOCKERHUB_REPO }}:latest-amd64 + inputs: ${{ env.DOCKERHUB_REPO }}:latest-arm64 tags: ${{ env.DOCKERHUB_REPO }}:latest push: true