Merge pull request #691 from ViktorTigerstrom/2023-12-lit-v0_12_2_alpha #43
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: Docker image build | |
on: | |
push: | |
tags: | |
- 'v*' | |
defaults: | |
run: | |
shell: bash | |
env: | |
DOCKER_REPO: lightninglabs | |
DOCKER_IMAGE: lightning-terminal | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up QEMU | |
uses: lightninglabs/gh-actions/setup-qemu-action@2021.01.25.00 | |
- name: Set up Docker Buildx | |
uses: lightninglabs/gh-actions/setup-buildx-action@2021.01.25.00 | |
- name: Login to DockerHub | |
uses: lightninglabs/gh-actions/login-action@2021.01.25.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 default image | |
id: docker_build | |
uses: lightninglabs/gh-actions/build-push-action@2021.01.25.00 | |
with: | |
push: true | |
platforms: linux/amd64,linux/arm64 | |
tags: "${{ env.DOCKER_REPO }}/${{ env.DOCKER_IMAGE }}:${{ env.RELEASE_VERSION }}" | |
build-args: checkout=${{ env.RELEASE_VERSION }} | |
- name: Build and push image with /lit path | |
id: docker_build2 | |
uses: lightninglabs/gh-actions/build-push-action@2021.01.25.00 | |
with: | |
push: true | |
platforms: linux/amd64,linux/arm64 | |
tags: "${{ env.DOCKER_REPO }}/${{ env.DOCKER_IMAGE }}:${{ env.RELEASE_VERSION }}-path-prefix" | |
build-args: | | |
checkout=${{ env.RELEASE_VERSION }} | |
public_url=/lit | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} ${{ steps.docker_build2.outputs.digest }} |