Add .gitea/workflows/docker-build.yml
All checks were successful
Image Build / docker (push) Successful in 53s
All checks were successful
Image Build / docker (push) Successful in 53s
This commit is contained in:
parent
c979a7fa76
commit
a707ab4de0
31
.gitea/workflows/docker-build.yml
Normal file
31
.gitea/workflows/docker-build.yml
Normal file
@ -0,0 +1,31 @@
|
||||
name: Image Build
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
# Manueel starte
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
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.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
-
|
||||
name: Build and push
|
||||
id: docker_build
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
push: true
|
||||
tags: sthopeless/alpine-utils:latest
|
Loading…
x
Reference in New Issue
Block a user