Files
Chronolock/.gitea/workflows/build.yml
Pupyrinth a9775727ee
All checks were successful
Build and push docker image / build (push) Successful in 26s
Fixed build image
2025-12-09 15:22:14 +01:00

23 lines
587 B
YAML

name: "Build and push docker image"
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login registry
uses: docker/login-action@v3
with:
registry: git.gliroid.com
username: ${{ gitea.actor }}
password: ${{ secrets.TOKEN }}
- name: Build image
run: docker build -t git.gliroid.com/pupyrinth/chronolock-pack:latest .
- name: Push image
run: docker push git.gliroid.com/pupyrinth/chronolock-pack:latest