diff options
| author | Kohei Ota (inductor) <kela@inductor.me> | 2023-02-14 15:00:50 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-14 15:00:50 +0900 |
| commit | c1f1e0ee7c20f7ff31bce940adba37303fdf3987 (patch) | |
| tree | c2250e74cba18a2e06db876b44f12b7483a7297a /.github/workflows/docker.yml | |
| parent | attempt matrix build (#9927) (diff) | |
| download | misskey-c1f1e0ee7c20f7ff31bce940adba37303fdf3987.tar.gz misskey-c1f1e0ee7c20f7ff31bce940adba37303fdf3987.tar.bz2 misskey-c1f1e0ee7c20f7ff31bce940adba37303fdf3987.zip | |
Revert "attempt matrix build (#9927)" (#9930)
This reverts commit 192ea9738d84c9b65613f38cce024325b9b8c819.
Diffstat (limited to '.github/workflows/docker.yml')
| -rw-r--r-- | .github/workflows/docker.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index e4440303d8..a465d92eaf 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -9,9 +9,7 @@ jobs: push_to_registry: name: Push Docker image to Docker Hub runs-on: ubuntu-latest - strategy: - matrix: - arch: [linux/amd64, linux/arm64] + steps: - name: Check out the repo uses: actions/checkout@v3.3.0 @@ -19,7 +17,7 @@ jobs: id: buildx uses: docker/setup-buildx-action@v2.3.0 with: - platforms: ${{ matrix.arch }} + platforms: linux/amd64,linux/arm64 - name: Docker meta id: meta uses: docker/metadata-action@v4 @@ -43,7 +41,7 @@ jobs: builder: ${{ steps.buildx.outputs.name }} context: . push: true - platforms: ${{ matrix.arch }} + platforms: ${{ steps.buildx.outputs.platforms }} provenance: false tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} |