[#493] forgejo: Add Docker build actions
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
parent
140d970a95
commit
c990027a65
1 changed files with 26 additions and 0 deletions
|
@ -36,3 +36,29 @@ jobs:
|
||||||
|
|
||||||
- name: Build LENS
|
- name: Build LENS
|
||||||
run: make bin/frostfs-lens
|
run: make bin/frostfs-lens
|
||||||
|
|
||||||
|
build-docker:
|
||||||
|
name: Build Docker images
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
# Allows to fetch all history for all branches and tags.
|
||||||
|
# Need this for proper versioning.
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Build Docker ADM
|
||||||
|
run: make image-adm
|
||||||
|
|
||||||
|
- name: Build Docker CI
|
||||||
|
run: make image-ci
|
||||||
|
|
||||||
|
- name: Build Docker CLI
|
||||||
|
run: make image-cli
|
||||||
|
|
||||||
|
- name: Build Docker IR
|
||||||
|
run: make image-ir
|
||||||
|
|
||||||
|
- name: Build Docker Storage
|
||||||
|
run: make image-storage
|
||||||
|
|
Loading…
Add table
Reference in a new issue