abiball/.gitea/workflows/build.yaml
Constantin Simonis 3176001a7e
All checks were successful
build / build (push) Successful in 5m42s
debug
2025-01-10 15:25:04 +01:00

24 lines
561 B
YAML

name: build
on: push
# pull_request:
# types:
# - closed
# branches:
# - main
jobs:
build:
runs-on: remote
steps:
- uses: https://git.simonis.lol/actions/checkout@v4
- uses: https://git.simonis.lol/actions/login@v1
with:
registry: git.simonis.lol
username: ${{ vars.DOCKER_USER }}
password: ${{ vars.DOCKER_PW }}
- name: build
run: docker build -t git.simonis.lol/sites/abiball:latest .
- name: push
run: docker push git.simonis.lol/sites/abiball:latest