Files
test/.gitea/workflows/demo.yaml
danthe42 a9c0886527
Some checks failed
ci / docker (push) Has been cancelled
4
2025-11-06 19:08:54 +01:00

19 lines
557 B
YAML

name: ci
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
docker:
runs-on: docker:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to docker
run: docker login -u danthe -p Secret666 gitea.goroid.io
- name: Build docker container
run: docker build -t gitea.goroid.io/danthe/test:latest .
- name: Push docker container
run: docker push gitea.goroid.io/danthe/test:latest
- name: Cleanup old images
run: docker image prune -f