27 lines
701 B
YAML
27 lines
701 B
YAML
name: buildx
|
|
|
|
on:
|
|
push:
|
|
branches: develop
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout code
|
|
uses: actions/checkout@v2
|
|
- name: install buildx
|
|
id: buildx
|
|
uses: crazy-max/ghaction-docker-buildx@v1
|
|
with:
|
|
version: latest
|
|
- name: log in to docker hub
|
|
run: |
|
|
echo "${{ secrets.DOCKER_PASSWORD }}" | \
|
|
docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
|
|
- name: build and push the image
|
|
run: |
|
|
docker buildx build --push \
|
|
--tag benbusby/whoogle-search:buildx-experimental \
|
|
--platform linux/amd64,linux/arm/v7,linux/arm64 .
|