bingo/.gitea/workflows/build.yaml

24 lines
637 B
YAML
Raw Normal View History

name: build
run-name: ${{ gitea.actor }} is building.
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: login to container registry
uses: docker/login-action@v3
with:
registry: git.hl.srp.life
username: ${{ gitea.actor }}
password: ${{ secrets.GITEA_TOKEN }}
- name: docker buildx setup
uses: docker/setup-buildx-action@v3
- name: checkout code
uses: actions/checkout@v4
- name: build and push to registry
uses: docker/build-push-action@v6
with:
push: true
tags: ${{ gitea.actor }}/bingo:dev