This repository has been archived on 2024-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
staxman-old/.forgejo/workflows/build-container.yaml
Hamcha 094e738ef2
Some checks are pending
Build and push Docker image / build-and-publish (push) Waiting to run
ci: add ubuntu (sigh)
2024-03-30 19:20:37 +01:00

30 lines
No EOL
785 B
YAML

name: Build and push Docker image
on:
push:
branches:
- master
jobs:
build-and-publish:
runs-on: ubuntu-with-docker
steps:
- uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
driver: docker
driver-opts: |
network=web
- name: Auth with uchu registry
uses: docker/login-action@v2
with:
registry: ${{ secrets.DOCKER_REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ secrets.DOCKER_REGISTRY }}/Hamcha/staxman:latest