2020-11-13 13:26:52 +03:00
|
|
|
name: Docker image build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- 'v*'
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
env:
|
|
|
|
DOCKER_REPO: lightninglabs
|
|
|
|
DOCKER_IMAGE: lnd
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
main:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Set up QEMU
|
2021-01-25 16:16:00 +03:00
|
|
|
uses: lightninglabs/gh-actions/setup-qemu-action@2021.01.25.00
|
2020-11-13 13:26:52 +03:00
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
2021-01-25 16:16:00 +03:00
|
|
|
uses: lightninglabs/gh-actions/setup-buildx-action@2021.01.25.00
|
2020-11-13 13:26:52 +03:00
|
|
|
|
|
|
|
- name: Login to DockerHub
|
2021-01-25 16:16:00 +03:00
|
|
|
uses: lightninglabs/gh-actions/login-action@2021.01.25.00
|
2020-11-13 13:26:52 +03:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_API_KEY }}
|
|
|
|
|
|
|
|
- name: Set env
|
|
|
|
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Build and push
|
|
|
|
id: docker_build
|
2021-01-25 16:16:00 +03:00
|
|
|
uses: lightninglabs/gh-actions/build-push-action@2021.01.25.00
|
2020-11-13 13:26:52 +03:00
|
|
|
with:
|
|
|
|
push: true
|
2020-12-09 16:50:51 +03:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2020-11-13 13:26:52 +03:00
|
|
|
tags: "${{ env.DOCKER_REPO }}/${{ env.DOCKER_IMAGE }}:${{ env.RELEASE_VERSION }}"
|
|
|
|
build-args: checkout=${{ env.RELEASE_VERSION }}
|
|
|
|
|
|
|
|
- name: Image digest
|
|
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|