docker-alpine-php83-aio/.gitea/workflows/dockerbuild.yaml
Christopher Vagnetoft 082520e247
Some checks failed
dockerbuild / Build docker image (push) Failing after 16s
Another try at the workflow
2024-02-06 02:40:18 +01:00

33 lines
794 B
YAML

name: dockerbuild
on:
push:
branches:
- master
jobs:
dockerbuild:
name: Build docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
registry: https://dev.noccylabs.info
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
tags: dev.noccylabs.info/noccylabs/alpine-php83-aio:latest
secrets: |
GIT