Workflow file for this run
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 and publish Docker image on push | |
on: push | |
env: | |
DOCKER_CLI_EXPERIMENTAL: enabled | |
jobs: | |
build: | |
name: Build Docker image | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: Set BRANCH | |
run: echo "BRANCH=$(echo ${GITHUB_REF#refs/heads/} | sed 's/\//-/g')" >> $GITHUB_ENV | |
- name: Login to Docker Hub | |
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin | |
- name: Checkout project | |
uses: actions/checkout@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Setup Docker buildx action | |
uses: docker/setup-buildx-action@v1 | |
- name: Run Docker buildx | |
run: | | |
docker buildx build \ | |
--platform linux/amd64,linux/arm64 \ | |
--tag ${{ secrets.DOCKER_HUB_USER }}/umbrel-bitcoin:$BRANCH \ | |
--push . |