Actions process for automated build
This commit is contained in:
parent
ad015f663a
commit
30cd2ebe83
1 changed files with 21 additions and 0 deletions
21
.forgejo/workflow/build.yml
Normal file
21
.forgejo/workflow/build.yml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
name: 'Build Custom docker:dind image'
|
||||||
|
author: 'Neshura'
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
build-container:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3
|
||||||
|
-
|
||||||
|
name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
-
|
||||||
|
name: Push to Package Registry
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
tags: https://forgejo.neshweb.net/Neshura/docker-dind-bash:latest
|
Loading…
Reference in a new issue