Update spacebar-client-docker.yml: non self hosted runners #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build spacebar client docker image | |
on: | |
push: | |
branches: [ "master", "rewrite" ] | |
jobs: | |
build-amd64: | |
runs-on: [linux, x64] | |
needs: build-arm64 | |
steps: | |
- | |
uses: actions/checkout@v3 | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- | |
name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_SPACEBAR_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_SPACEBAR_TOKEN }} | |
- | |
name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
context: "{{defaultContext}}:spacebar-client/" | |
platforms: linux/amd64 | |
file: Dockerfile | |
push: true | |
tags: spacebarchat/client:latest-amd64 | |
provenance: false | |
- | |
name: Create and push manifest images | |
uses: Noelware/docker-manifest-action@master # or use a pinned version in the Releases tab | |
with: | |
inputs: spacebarchat/client:latest | |
images: spacebarchat/client:latest-amd64,spacebarchat/client:latest-arm64,spacebarchat/client:latest-armv7 | |
push: true | |
amend: true | |
build-arm64: | |
runs-on: [linux, ARM64] | |
steps: | |
- | |
uses: actions/checkout@v3 | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- | |
name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_SPACEBAR_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_SPACEBAR_TOKEN }} | |
- | |
name: Build and push armv7 | |
uses: docker/build-push-action@v4 | |
with: | |
context: "{{defaultContext}}:spacebar-client/" | |
platforms: linux/arm/v7 | |
file: Dockerfile | |
push: true | |
tags: spacebarchat/client:latest-armv7 | |
provenance: false | |
- | |
name: Build and push arm64 | |
uses: docker/build-push-action@v4 | |
with: | |
context: "{{defaultContext}}:spacebar-client/" | |
platforms: linux/arm64 | |
file: Dockerfile | |
push: true | |
tags: spacebarchat/client:latest-arm64 | |
provenance: false |