From 8ab777780c7895eda17180f235a1962ee8c43b1a Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Wed, 8 Dec 2021 01:55:46 -0500 Subject: [PATCH] update actions --- .github/workflows/develop.yml | 6 ++++++ .github/workflows/latest.yml | 6 ++++++ .github/workflows/version.yml | 6 ++++++ 3 files changed, 18 insertions(+) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 049c1eae..79900123 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -24,6 +24,11 @@ jobs: username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} + - name: Set up QEMU + uses: docker/setup-qemu-action@master + with: + platforms: all + - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@v1 @@ -34,5 +39,6 @@ jobs: with: context: ./ file: ./Dockerfile + platforms: linux/amd64,linux/arm64,linux/ppc64le push: true tags: ${{ secrets.DOCKER_HUB_USERNAME }}/plex-meta-manager:develop diff --git a/.github/workflows/latest.yml b/.github/workflows/latest.yml index 1ca8f595..d6c36a67 100644 --- a/.github/workflows/latest.yml +++ b/.github/workflows/latest.yml @@ -20,6 +20,11 @@ jobs: username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} + - name: Set up QEMU + uses: docker/setup-qemu-action@master + with: + platforms: all + - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@v1 @@ -30,5 +35,6 @@ jobs: with: context: ./ file: ./Dockerfile + platforms: linux/amd64,linux/arm64,linux/ppc64le push: true tags: ${{ secrets.DOCKER_HUB_USERNAME }}/plex-meta-manager:latest diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index fdfa7384..5f167376 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -21,6 +21,11 @@ jobs: username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} + - name: Set up QEMU + uses: docker/setup-qemu-action@master + with: + platforms: all + - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@v1 @@ -35,5 +40,6 @@ jobs: with: context: ./ file: ./Dockerfile + platforms: linux/amd64,linux/arm64,linux/ppc64le push: true tags: ${{ secrets.DOCKER_HUB_USERNAME }}/plex-meta-manager:${{ steps.get_version.outputs.VERSION }}