mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
91560dcc6d
(cherry picked from commit a4aa4201f02b613ab23fdd3fe45db2c129a2baca)
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
# Build and push docker image on push to 'stable' branch
|
|
# Docker build will be uploaded to dockerhub with the 'inventree:stable' tag
|
|
|
|
name: Docker Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'stable'
|
|
|
|
jobs:
|
|
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v2
|
|
- name: Check version number
|
|
run: |
|
|
python3 ci/check_version_number.py --release
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v1
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
- name: Login to Dockerhub
|
|
uses: docker/login-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
- name: Build and Push
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
context: ./docker
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
|
push: true
|
|
target: production
|
|
build-args:
|
|
branch=stable
|
|
tags: inventree/inventree:stable
|
|
- name: Image Digest
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|