-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (24 loc) · 1.06 KB
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Docker Deploy
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install buildx
run: |
sudo apt-get update
sudo apt-get install -y binfmt-support qemu-user-static jq
mkdir -p ~/.docker/cli-plugins
BUILDX_URL=$(curl https://api.github.com/repos/docker/buildx/releases/latest | jq -r .assets[].browser_download_url | grep amd64 | grep linux)
wget $BUILDX_URL -O ~/.docker/cli-plugins/docker-buildx
chmod +x ~/.docker/cli-plugins/docker-buildx
docker buildx create --name xbuilder
docker buildx use xbuilder
docker buildx inspect --bootstrap
- name: Log in to registry
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login registry.dispatch.sh -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: Build the Docker image
run: docker buildx build . --file Dockerfile --tag registry.dispatch.sh/maartje/dispatch-driver:$GITHUB_SHA --push --platform "linux/amd64,linux/arm64,linux/arm"